Remove broken location blocks for static files that had no proxy_pass, which caused all .js/.css files to return 404 or HTML. Add explicit /pos/static/ location with proxy_pass + cache headers. Update nexus-pos.conf in repo to match live config.
111 lines
3.2 KiB
Plaintext
111 lines
3.2 KiB
Plaintext
upstream nexus_pos {
|
|
server 127.0.0.1:5001;
|
|
}
|
|
|
|
upstream nexus_dashboard {
|
|
server 127.0.0.1:5000;
|
|
}
|
|
|
|
upstream nexus_quart {
|
|
server 127.0.0.1:5002;
|
|
}
|
|
|
|
# ─── POS (primary domain) ───
|
|
server {
|
|
listen 80;
|
|
server_name nexusautoparts.com.mx www.nexusautoparts.com.mx;
|
|
|
|
client_max_body_size 10M;
|
|
|
|
# Gzip compression
|
|
gzip on;
|
|
gzip_vary on;
|
|
gzip_proxied any;
|
|
gzip_comp_level 6;
|
|
gzip_types text/plain text/css text/xml application/json application/javascript application/rss+xml application/atom+xml image/svg+xml;
|
|
|
|
# Static assets with caching (proxy to Flask)
|
|
location /pos/static/ {
|
|
proxy_pass http://nexus_pos;
|
|
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_set_header X-Forwarded-Proto $scheme;
|
|
expires 6M;
|
|
add_header Cache-Control "public, immutable";
|
|
add_header X-Content-Type-Options nosniff always;
|
|
}
|
|
|
|
# Async catalog search via Quart+asyncpg (non-blocking I/O)
|
|
location /pos/api/catalog/async-search {
|
|
proxy_pass http://nexus_quart;
|
|
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_set_header X-Forwarded-Proto $scheme;
|
|
proxy_connect_timeout 5s;
|
|
proxy_send_timeout 30s;
|
|
proxy_read_timeout 30s;
|
|
proxy_buffering off;
|
|
}
|
|
|
|
location = / {
|
|
return 302 /pos/login;
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://nexus_pos;
|
|
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_set_header X-Forwarded-Proto $scheme;
|
|
proxy_read_timeout 300s;
|
|
}
|
|
}
|
|
|
|
# ─── Dashboard (admin subdomain) ───
|
|
server {
|
|
listen 80;
|
|
server_name admin.nexusautoparts.com.mx;
|
|
|
|
client_max_body_size 10M;
|
|
|
|
gzip on;
|
|
gzip_vary on;
|
|
gzip_proxied any;
|
|
gzip_comp_level 6;
|
|
gzip_types text/plain text/css text/xml application/json application/javascript application/rss+xml application/atom+xml image/svg+xml;
|
|
|
|
location / {
|
|
proxy_pass http://nexus_dashboard;
|
|
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_set_header X-Forwarded-Proto $scheme;
|
|
proxy_read_timeout 300s;
|
|
}
|
|
}
|
|
|
|
# ─── Legacy domain (keep for migration period) ───
|
|
server {
|
|
listen 80;
|
|
server_name nexus.consultoria-as.com;
|
|
|
|
client_max_body_size 10M;
|
|
|
|
gzip on;
|
|
gzip_vary on;
|
|
gzip_proxied any;
|
|
gzip_comp_level 6;
|
|
gzip_types text/plain text/css text/xml application/json application/javascript application/rss+xml application/atom+xml image/svg+xml;
|
|
|
|
location / {
|
|
proxy_pass http://nexus_dashboard;
|
|
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_set_header X-Forwarded-Proto $scheme;
|
|
proxy_read_timeout 300s;
|
|
}
|
|
}
|