ifc-commit/files/nginx/ifc-commit.conf
2026-03-25 10:36:30 +01:00

19 lines
578 B
Text

server {
listen 80;
server_name ifc-commit.gitaec.org ifcc.gitaec.org;
location / {
proxy_pass http://127.0.0.1:8095;
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;
# Required for streaming responses (/api/run)
proxy_buffering off;
proxy_cache off;
proxy_read_timeout 300s;
}
}