Files
GostGenerator/web/frontend/nginx.conf
T
2026-09-02 12:48:03 +03:00

29 lines
637 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
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;
client_max_body_size 512m;
proxy_read_timeout 300s;
}
location /docs {
proxy_pass http://api:8000/docs;
}
location /openapi.json {
proxy_pass http://api:8000/openapi.json;
}
location / {
try_files $uri /index.html;
}
}