Compare commits

..

3 Commits

Author SHA1 Message Date
Maksim Pankov 3d860a23d3 fixes 2023-06-11 19:05:03 +00:00
Maksim Pankov dd544be204 fix 2023-06-11 19:01:40 +00:00
Maksim Pankov 004403cd9a fix 2023-06-11 18:59:05 +00:00
5 changed files with 6 additions and 3 deletions

4
.gitignore vendored
View File

@ -1 +1,3 @@
.data .data
tmp
db-data

0
services/pigallery/install.sh Normal file → Executable file
View File

0
services/portainer/install.sh Normal file → Executable file
View File

View File

@ -2,9 +2,10 @@ server {
listen 443 ssl; listen 443 ssl;
server_name portainer.skazochnik.spb.ru; server_name portainer.skazochnik.spb.ru;
location / { location / {
proxy_pass http://localhost:8077 proxy_pass http://localhost:8077;
} }
ssl_certificate /etc/letsencrypt/live/portainer.skazochnik.spb.ru/fullchain.pem; # managed by Certbot 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 ssl_certificate_key /etc/letsencrypt/live/portainer.skazochnik.spb.ru/privkey.pem; # managed by Certbot
} }