queue_flask / nginx.conf
multimodalart's picture
Update nginx.conf
d87c92c
raw
history blame contribute delete
261 Bytes
server {
listen 80;
location / {
proxy_pass http://127.0.0.1:7680;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_read_timeout 1800; # Set timeout to 1800 seconds, which is 30 minutes
}
}