2025-01-09 17:08:21 +03:00
|
|
|
{ ... }:
|
|
|
|
{
|
2025-01-09 14:35:30 +03:00
|
|
|
config.const.host = {
|
2025-01-09 15:38:56 +03:00
|
|
|
nginx = {
|
|
|
|
domain = "voronind.com";
|
|
|
|
sslCertificate = "/etc/letsencrypt/live/voronind.com/fullchain.pem";
|
|
|
|
sslCertificateKey = "/etc/letsencrypt/live/voronind.com/privkey.pem";
|
|
|
|
allowLocal = ''
|
|
|
|
allow 10.0.0.0/8;
|
|
|
|
allow fd09:8d46:b26::/48;
|
2025-01-09 21:54:14 +03:00
|
|
|
allow 127.0.0.1/32;
|
|
|
|
allow ::1/128;
|
2025-01-09 15:38:56 +03:00
|
|
|
deny all;
|
|
|
|
'';
|
|
|
|
extraConfig = ''
|
|
|
|
listen 443 ssl;
|
|
|
|
include /etc/letsencrypt/conf/options-ssl-nginx.conf;
|
|
|
|
ssl_dhparam /etc/letsencrypt/conf/ssl-dhparams.pem;
|
|
|
|
'';
|
|
|
|
};
|
2025-01-09 14:35:30 +03:00
|
|
|
};
|
|
|
|
}
|