2024-12-18 09:40:11 +03:00
|
|
|
{ ... }:
|
2024-12-02 21:12:45 +03:00
|
|
|
{
|
2024-12-18 09:40:11 +03:00
|
|
|
"yt.voronind.com".extraConfig = ''
|
|
|
|
listen 443 ssl;
|
2024-12-02 21:12:45 +03:00
|
|
|
|
2024-12-18 09:40:11 +03:00
|
|
|
location / {
|
|
|
|
allow 10.0.0.0/8;
|
|
|
|
allow fd09:8d46:b26::/48;
|
|
|
|
deny all;
|
2024-12-02 21:12:45 +03:00
|
|
|
|
2024-12-18 09:40:11 +03:00
|
|
|
proxy_pass http://127.0.0.1:3001$request_uri;
|
2024-12-02 21:12:45 +03:00
|
|
|
|
2024-12-18 09:40:11 +03:00
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
proxy_set_header Connection "";
|
2024-12-02 21:12:45 +03:00
|
|
|
|
2024-12-18 09:40:11 +03:00
|
|
|
proxy_hide_header Content-Security-Policy;
|
|
|
|
proxy_hide_header X-Frame-Options;
|
|
|
|
proxy_hide_header X-Content-Type-Options;
|
|
|
|
}
|
2024-12-02 21:12:45 +03:00
|
|
|
|
2024-12-18 09:40:11 +03:00
|
|
|
ssl_certificate /etc/letsencrypt/live/voronind.com/fullchain.pem;
|
|
|
|
ssl_certificate_key /etc/letsencrypt/live/voronind.com/privkey.pem;
|
|
|
|
include /etc/letsencrypt/conf/options-ssl-nginx.conf;
|
|
|
|
ssl_dhparam /etc/letsencrypt/conf/ssl-dhparams.pem;
|
|
|
|
'';
|
2024-12-02 21:12:45 +03:00
|
|
|
}
|