Compare commits
No commits in common. "08893439e7caf040c14f2b98c6ce82369d9afc26" and "ceca1b3798c21852e051779fc5f6e3e4cdd4d74e" have entirely different histories.
08893439e7
...
ceca1b3798
|
@ -7,14 +7,10 @@
|
|||
({ name, ... }: {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
# enable http3 for all hosts
|
||||
quic = true;
|
||||
http3 = true;
|
||||
# split up nginx access logs per vhost
|
||||
extraConfig = ''
|
||||
access_log /var/log/nginx/${name}_access.log;
|
||||
error_log /var/log/nginx/${name}_error.log;
|
||||
add_header Alt-Svc 'h3=":443"; ma=86400';
|
||||
'';
|
||||
})
|
||||
);
|
||||
|
@ -26,7 +22,6 @@
|
|||
networking.firewall.allowedUDPPorts = [ 443 ];
|
||||
services.nginx = {
|
||||
enable = true;
|
||||
package = pkgs.nginxQuic;
|
||||
additionalModules = [ pkgs.nginxModules.pam ];
|
||||
recommendedProxySettings = true;
|
||||
recommendedGzipSettings = true;
|
||||
|
|
|
@ -43,7 +43,6 @@ in
|
|||
root = "/srv/web/fsrewsp";
|
||||
extraConfig = ''
|
||||
index index.php index.html;
|
||||
fastcgi_param HTTP_HOST $host;
|
||||
'';
|
||||
|
||||
locations = {
|
||||
|
|
|
@ -40,7 +40,6 @@ in
|
|||
root = "/srv/web/nightline";
|
||||
extraConfig = ''
|
||||
index index.php index.html;
|
||||
fastcgi_param HTTP_HOST $host;
|
||||
'';
|
||||
|
||||
locations = {
|
||||
|
|
Loading…
Reference in a new issue