2023-06-11 12:23:02 +00:00
|
|
|
server {
|
|
|
|
listen 443 ssl;
|
|
|
|
server_name portainer.skazochnik.spb.ru;
|
|
|
|
location / {
|
2023-06-11 18:59:05 +00:00
|
|
|
proxy_pass http://localhost:8077;
|
2023-06-11 12:23:02 +00:00
|
|
|
}
|
|
|
|
|
2023-06-11 18:59:05 +00:00
|
|
|
|
2023-06-11 12:23:02 +00:00
|
|
|
ssl_certificate /etc/letsencrypt/live/portainer.skazochnik.spb.ru/fullchain.pem; # managed by Certbot
|
|
|
|
ssl_certificate_key /etc/letsencrypt/live/portainer.skazochnik.spb.ru/privkey.pem; # managed by Certbot
|
2023-06-11 18:59:05 +00:00
|
|
|
}
|