Files
media-analyzer/media-analyzer/frontend/nginx.conf
2025-08-25 04:01:24 -03:00

80 lines
2.7 KiB
Nginx Configuration File

server {
listen 80;
listen [::]:80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
# Gzip compression
gzip on;
gzip_vary on;
gzip_min_length 1024;
gzip_proxied expired no-cache no-store private no_last_modified no_etag auth;
gzip_types text/plain text/css text/xml text/javascript application/javascript application/xml+rss application/json;
# Angular routing - serve index.html for all routes
location / {
try_files $uri $uri/ /index.html;
# Security headers
add_header X-Frame-Options "SAMEORIGIN" always;
add_header X-XSS-Protection "1; mode=block" always;
add_header X-Content-Type-Options "nosniff" always;
add_header Referrer-Policy "no-referrer-when-downgrade" always;
add_header Content-Security-Policy "default-src 'self' http: https: data: blob: 'unsafe-inline'; connect-src 'self' ws: wss: http: https:" always;
}
# Cache static assets
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
expires 1y;
add_header Cache-Control "public, immutable";
try_files $uri =404;
}
# API proxy (for backend communication)
location /api/ {
# Use resolver for dynamic DNS resolution
resolver 127.0.0.11 valid=30s;
set $backend backend:8000;
proxy_pass http://$backend;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
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_cache_bypass $http_upgrade;
}
# WebSocket proxy (for real-time updates)
location /ws/ {
resolver 127.0.0.11 valid=30s;
set $backend backend:8000;
proxy_pass http://$backend;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
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;
}
# HLS streaming proxy: route to nginx-rtmp HLS server
location /streaming/ {
# HLS proxy: strip /streaming/ prefix and forward to nginx-rtmp
rewrite ^/streaming/(.*)$ /$1 break;
proxy_pass http://nginx-rtmp;
proxy_http_version 1.1;
proxy_set_header Host $host;
add_header Access-Control-Allow-Origin *;
add_header Cache-Control no-cache;
proxy_buffering off;
}
# Error pages
error_page 404 /index.html;
}