This commit is contained in:
2025-01-30 11:08:23 +01:00
parent f18787a39f
commit f899c17ac0
4 changed files with 20 additions and 7 deletions

12
default.conf.template Normal file
View File

@@ -0,0 +1,12 @@
server {
listen ${NGINX_PORT};
location / {
proxy_pass ${NGINX_PROXY_URL};
proxy_set_header Host patate.dev;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection upgrade;
proxy_set_header Accept-Encoding gzip;
}
}