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