19 lines
578 B
Text
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;
|
|
}
|
|
}
|