docling-studio/nginx.conf
pjmalandrino c3c0149532
Some checks failed
Release Docker Image / Build & push Docker image (push) Has been cancelled
Add docker push
2026-03-20 18:26:20 +01:00

19 lines
405 B
Nginx Configuration File

server {
listen 3000;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location /api/ {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_read_timeout 600s;
proxy_send_timeout 600s;
client_max_body_size 50M;
}
}