auto backup 2026-03-28_23:00:01

This commit is contained in:
tan-docker
2026-03-28 23:00:01 +01:00
parent 5175629247
commit 93548f25ac
2 changed files with 15 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
server {
listen 80;
location / {
proxy_pass http://192.168.0.6:5001;
proxy_set_header Host $host;
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 Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}