Add Nginx deploy config for app.black-week.cz

This commit is contained in:
rajchales-monito
2026-07-23 20:48:41 +02:00
parent f5c32d3c2d
commit 1e9fbc293e
+20
View File
@@ -0,0 +1,20 @@
server {
listen 80;
server_name app.black-week.cz;
client_max_body_size 10M;
location / {
proxy_pass http://127.0.0.1:3400;
proxy_http_version 1.1;
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;
proxy_buffering off;
proxy_cache off;
proxy_read_timeout 1h;
}
}