2023-11-19 12:00:37 +00:00
|
|
|
server {
|
2024-06-05 20:21:19 +00:00
|
|
|
listen 443 ssl; # managed by Certbot
|
2024-11-16 12:58:37 +00:00
|
|
|
server_name maksim-pankov.ru skazochnik.spb.ru gipat;
|
2023-11-19 12:00:37 +00:00
|
|
|
location / {
|
|
|
|
proxy_pass http://gipat:5002/;
|
2024-06-05 20:21:19 +00:00
|
|
|
sub_filter "http://gipat:5002/" "https://skazochnik.spb.ru/";
|
2023-11-19 12:00:37 +00:00
|
|
|
client_max_body_size 0;
|
|
|
|
}
|
2024-11-16 12:58:37 +00:00
|
|
|
ssl_certificate /etc/letsencrypt/live/maksim-pankov.ru/fullchain.pem; # managed by Certbot
|
|
|
|
ssl_certificate_key /etc/letsencrypt/live/maksim-pankov.ru/privkey.pem; # managed by Certbot
|
2023-11-19 12:00:37 +00:00
|
|
|
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
|
|
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
2024-11-16 12:58:37 +00:00
|
|
|
|
2023-11-19 12:00:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
server {
|
|
|
|
listen 8989 ssl default_server; # managed by Certbot
|
2024-11-16 12:58:37 +00:00
|
|
|
server_name maksim-pankov.ru skazochnik.spb.ru gipat;
|
2023-11-19 12:00:37 +00:00
|
|
|
location / {
|
|
|
|
root /var/www/website_frontend;
|
|
|
|
index index.html index.htm;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssl_certificate /etc/letsencrypt/live/skazochnik.spb.ru/fullchain.pem; # managed by Certbot
|
|
|
|
ssl_certificate_key /etc/letsencrypt/live/skazochnik.spb.ru/privkey.pem; # managed by Certbot
|
|
|
|
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
|
|
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
|
|
|
}
|