18 lines
334 B
Nginx Configuration File
18 lines
334 B
Nginx Configuration File
server {
|
|
listen 8020;
|
|
|
|
client_max_body_size 500M;
|
|
|
|
location /api/ {
|
|
proxy_pass http://backend:8000/api/;
|
|
proxy_set_header Host $host;
|
|
proxy_read_timeout 3600s;
|
|
proxy_send_timeout 3600s;
|
|
}
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
try_files $uri /index.html;
|
|
}
|
|
}
|