33 lines
761 B
Nginx Configuration File
33 lines
761 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name _;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
client_max_body_size 2g;
|
|
|
|
location /api/ {
|
|
proxy_pass http://api:8000/api/;
|
|
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_connect_timeout 600s;
|
|
proxy_send_timeout 600s;
|
|
proxy_read_timeout 600s;
|
|
client_body_timeout 600s;
|
|
send_timeout 600s;
|
|
}
|
|
|
|
location /docs {
|
|
proxy_pass http://api:8000/docs;
|
|
}
|
|
|
|
location /openapi.json {
|
|
proxy_pass http://api:8000/openapi.json;
|
|
}
|
|
|
|
location / {
|
|
try_files $uri /index.html;
|
|
}
|
|
}
|