Spaces:
Running
Running
File size: 1,318 Bytes
7cc374f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | worker_processes auto;
pid /tmp/nginx.pid;
error_log /var/log/nginx/error.log warn;
events {
worker_connections 1024;
}
http {
access_log /var/log/nginx/access.log;
upstream api {
server 127.0.0.1:8000;
}
upstream streamlit {
server 127.0.0.1:8501;
}
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 7860;
server_name _;
location /api/ {
proxy_pass http://api/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_http_version 1.1;
# /search/stream emits NDJSON incrementally; buffering would hold it
# until the response completes, defeating the point of streaming.
proxy_buffering off;
proxy_read_timeout 600s;
proxy_send_timeout 600s;
}
location / {
proxy_pass http://streamlit;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_read_timeout 600s;
proxy_send_timeout 600s;
}
}
}
|