parsons: config nginx

keep-around/fd9e8941c77dea75114f839693f63a813b2d391b
schweby 2021-08-07 21:24:59 +02:00 committed by hexchen
parent a5063ae960
commit f5579bc98e
2 changed files with 16 additions and 2 deletions

View File

@ -77,6 +77,7 @@ in {
services.nginx.appendHttpConfig = '' services.nginx.appendHttpConfig = ''
access_log off; access_log off;
add_header Permissions-Policy "interest-cohort=()";
''; '';
networking.nftables.enable = true; networking.nftables.enable = true;

View File

@ -43,8 +43,21 @@
interface = "enp35s0"; interface = "enp35s0";
}; };
services.nginx.enable = true; services.nginx = {
services.nginx.recommendedProxySettings = true; enable = true;
recommendedProxySettings = true;
virtualHosts = {
"parsons.hacc.space" = {
default = true;
locations."/".return = "404";
};
"hacc.space" = {
enableACME = true;
forceSSL = true;
locations."/".return = "302 https://hacc.earth";
};
};
};
networking.firewall.allowedTCPPorts = [ 80 443 ]; networking.firewall.allowedTCPPorts = [ 80 443 ];
services.restic.backups.tardis = { services.restic.backups.tardis = {