2025-12-14 02:38:35 +07:00
|
|
|
events {
|
|
|
|
|
worker_connections 1024;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
http {
|
|
|
|
|
include /etc/nginx/mime.types;
|
|
|
|
|
default_type application/octet-stream;
|
|
|
|
|
|
|
|
|
|
# Logging
|
|
|
|
|
access_log /var/log/nginx/access.log;
|
|
|
|
|
error_log /var/log/nginx/error.log;
|
|
|
|
|
|
|
|
|
|
# Gzip
|
|
|
|
|
gzip on;
|
|
|
|
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml;
|
|
|
|
|
|
|
|
|
|
# File upload limit (15 MB)
|
|
|
|
|
client_max_body_size 15M;
|
|
|
|
|
|
|
|
|
|
upstream backend {
|
|
|
|
|
server backend:8000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
upstream frontend {
|
|
|
|
|
server frontend:80;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
server {
|
|
|
|
|
listen 80;
|
|
|
|
|
server_name localhost;
|
|
|
|
|
|
|
|
|
|
# Frontend
|
|
|
|
|
location / {
|
|
|
|
|
proxy_pass http://frontend;
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Backend API
|
|
|
|
|
location /api {
|
|
|
|
|
proxy_pass http://backend;
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
|
|
2025-12-17 01:06:03 +07:00
|
|
|
# Timeout for long GPT requests (15 min)
|
|
|
|
|
proxy_read_timeout 900;
|
|
|
|
|
proxy_connect_timeout 900;
|
|
|
|
|
proxy_send_timeout 900;
|
2025-12-14 02:38:35 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Static files (uploads)
|
|
|
|
|
location /uploads {
|
|
|
|
|
alias /app/uploads;
|
|
|
|
|
expires 30d;
|
|
|
|
|
add_header Cache-Control "public, immutable";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Health check
|
|
|
|
|
location /health {
|
|
|
|
|
proxy_pass http://backend;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|