nix/host/x86_64-linux/home/nginx/Davis.nix

17 lines
416 B
Nix
Raw Normal View History

2025-01-09 14:35:30 +03:00
{ config, ... }:
2025-01-09 14:09:03 +03:00
{
2025-01-09 14:35:30 +03:00
"dav.${config.const.host.domain}" = {
inherit (config.const.host) sslCertificate sslCertificateKey;
2025-01-09 14:09:03 +03:00
locations."/".extraConfig = ''
allow 10.0.0.0/8;
allow fd09:8d46:b26::/48;
deny all;
'';
extraConfig = ''
2025-01-09 14:35:30 +03:00
listen 443 ssl;
2025-01-09 14:09:03 +03:00
include /etc/letsencrypt/conf/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/conf/ssl-dhparams.pem;
'';
};
}