auto backup 2026-04-20_23:19:21

This commit is contained in:
tan-docker
2026-04-20 23:19:21 +02:00
parent 267139cf9e
commit 040687f007
5 changed files with 53 additions and 1 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ services:
restart: unless-stopped
volumes:
- /opt/stacks/00_store/nginx.conf:/etc/nginx/conf.d/default.conf:ro
- /opt/stacks/20_store/nginx.conf:/etc/nginx/conf.d/default.conf:ro
networks:
- tan-network
+24
View File
@@ -0,0 +1,24 @@
server {
listen 80;
location / {
proxy_pass https://192.168.0.6:5001;
proxy_ssl_verify off;
proxy_set_header Host 192.168.0.6;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port 443;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 3600;
proxy_send_timeout 3600;
proxy_redirect off;
}
}