This commit is contained in:
Sebastian
2024-10-24 08:16:28 +02:00
parent 2bc376f8e8
commit 1ddebffc49
2 changed files with 25 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
server {
listen 80;
location / {
proxy_pass ${TARGET_URL};
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 $scheme;
}
}