| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- server {
- listen 80;
- server_name localhost;
- root /usr/share/nginx/html;
- index index.html;
- # Enable gzip compression
- gzip on;
- gzip_vary on;
- gzip_min_length 1024;
- gzip_types text/plain text/css text/xml text/javascript application/javascript application/xml+rss application/json;
- # Handle Vue.js SPA routing
- location / {
- try_files $uri $uri/ /index.html;
- }
- # API proxy to backend
- location /api/ {
- proxy_pass http://backend:80;
- 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;
-
- # Handle CORS headers
- add_header Access-Control-Allow-Origin "*" always;
- add_header Access-Control-Allow-Methods "GET, POST, PUT, DELETE, OPTIONS" always;
- add_header Access-Control-Allow-Headers "Content-Type, Authorization, X-Requested-With" always;
-
- # Handle preflight requests
- if ($request_method = 'OPTIONS') {
- add_header Access-Control-Allow-Origin "*";
- add_header Access-Control-Allow-Methods "GET, POST, PUT, DELETE, OPTIONS";
- add_header Access-Control-Allow-Headers "Content-Type, Authorization, X-Requested-With";
- add_header Content-Length 0;
- add_header Content-Type text/plain;
- return 204;
- }
- }
- # Cache static assets
- location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
- expires 1y;
- add_header Cache-Control "public, immutable";
- }
- # Security headers
- add_header X-Frame-Options "SAMEORIGIN" always;
- add_header X-Content-Type-Options "nosniff" always;
- add_header X-XSS-Protection "1; mode=block" always;
- add_header Referrer-Policy "strict-origin-when-cross-origin" always;
- # Error pages
- error_page 404 /index.html;
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root /usr/share/nginx/html;
- }
- }
|