mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-04-03 02:30:52 +02:00
chore(pages): cleanup module
This commit is contained in:
parent
0a4c2444bc
commit
ab03b23b45
1 changed files with 59 additions and 76 deletions
|
@ -5,18 +5,6 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
options.services.nginx.virtualHosts = lib.mkOption {
|
|
||||||
type = lib.types.attrsOf (
|
|
||||||
lib.types.submodule {
|
|
||||||
config.extraConfig = ''
|
|
||||||
real_ip_header proxy_protocol;
|
|
||||||
set_real_ip_from 127.0.0.1;
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
config = {
|
|
||||||
age.secrets."pages-settings-file".file = ../../secrets/pages-settings-file.age;
|
age.secrets."pages-settings-file".file = ../../secrets/pages-settings-file.age;
|
||||||
|
|
||||||
services.codeberg-pages = {
|
services.codeberg-pages = {
|
||||||
|
@ -51,12 +39,17 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [
|
networking.firewall.allowedTCPPorts = [
|
||||||
80
|
|
||||||
443
|
|
||||||
8447
|
8447
|
||||||
];
|
];
|
||||||
|
|
||||||
services.nginx.defaultListen = [
|
luj.nginx.enable = true;
|
||||||
|
services.nginx = {
|
||||||
|
appendHttpConfig = ''
|
||||||
|
set_real_ip_from 127.0.0.1;
|
||||||
|
real_ip_header proxy_protocol;
|
||||||
|
'';
|
||||||
|
|
||||||
|
defaultListen = [
|
||||||
{
|
{
|
||||||
addr = "127.0.0.1";
|
addr = "127.0.0.1";
|
||||||
port = 8446;
|
port = 8446;
|
||||||
|
@ -69,21 +62,12 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
security.acme.acceptTerms = true;
|
|
||||||
security.acme.defaults.email = "julien@malka.sh";
|
|
||||||
luj.nginx.enable = lib.mkForce false;
|
|
||||||
services.nginx = {
|
|
||||||
enable = true;
|
|
||||||
recommendedGzipSettings = true;
|
|
||||||
recommendedOptimisation = true;
|
|
||||||
recommendedProxySettings = true;
|
|
||||||
recommendedTlsSettings = true;
|
|
||||||
streamConfig = ''
|
streamConfig = ''
|
||||||
map $ssl_preread_server_name $sni_upstream {
|
map $ssl_preread_server_name $sni_upstream {
|
||||||
hostnames;
|
hostnames;
|
||||||
default 0.0.0.0:8010;
|
default 0.0.0.0:8010;
|
||||||
${lib.concatMapStringsSep "\n" (vhost: " ${vhost} 0.0.0.0:8446;") (
|
${lib.concatMapStringsSep "\n" (vhost: " ${vhost} 0.0.0.0:8446;") (
|
||||||
lib.attrNames config.services.nginx.virtualHosts
|
lib.filter (e: e != "default") (lib.attrNames config.services.nginx.virtualHosts)
|
||||||
)}
|
)}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -104,5 +88,4 @@
|
||||||
defaultSSLListenPort = 8446;
|
defaultSSLListenPort = 8446;
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue