103 lines
3.0 KiB
Nginx Configuration File
103 lines
3.0 KiB
Nginx Configuration File
|
|
# Upstream servers using Docker service names (internal network)
|
||
|
|
upstream dyolink_backend {
|
||
|
|
server backend:3000;
|
||
|
|
keepalive 32;
|
||
|
|
}
|
||
|
|
|
||
|
|
upstream dyolink_frontend {
|
||
|
|
server frontend:3000;
|
||
|
|
keepalive 32;
|
||
|
|
}
|
||
|
|
|
||
|
|
# HTTP Server (redirects to HTTPS)
|
||
|
|
server {
|
||
|
|
listen 80;
|
||
|
|
listen [::]:80;
|
||
|
|
server_name dyolink.com www.dyolink.com;
|
||
|
|
|
||
|
|
# Redirect all HTTP to HTTPS
|
||
|
|
return 301 https://$server_name$request_uri;
|
||
|
|
}
|
||
|
|
|
||
|
|
# HTTPS Server
|
||
|
|
server {
|
||
|
|
listen 443 ssl http2;
|
||
|
|
listen [::]:443 ssl http2;
|
||
|
|
server_name dyolink.com www.dyolink.com;
|
||
|
|
|
||
|
|
# SSL Configuration - Replace with your actual certificates
|
||
|
|
ssl_certificate /etc/nginx/ssl/dyolink.com.crt;
|
||
|
|
ssl_certificate_key /etc/nginx/ssl/dyolink.com.key;
|
||
|
|
|
||
|
|
# SSL Security
|
||
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||
|
|
ssl_ciphers ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384;
|
||
|
|
ssl_prefer_server_ciphers off;
|
||
|
|
ssl_session_cache shared:SSL:10m;
|
||
|
|
ssl_session_timeout 10m;
|
||
|
|
|
||
|
|
# 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;
|
||
|
|
|
||
|
|
# Gzip compression
|
||
|
|
gzip on;
|
||
|
|
gzip_vary on;
|
||
|
|
gzip_min_length 1024;
|
||
|
|
gzip_proxied expired no-cache no-store private auth;
|
||
|
|
gzip_types text/plain text/css text/xml text/javascript application/javascript application/xml+rss application/json;
|
||
|
|
gzip_disable "MSIE [1-6]\.";
|
||
|
|
|
||
|
|
# Client settings
|
||
|
|
client_max_body_size 50M;
|
||
|
|
client_body_timeout 12;
|
||
|
|
client_header_timeout 12;
|
||
|
|
keepalive_timeout 15;
|
||
|
|
send_timeout 10;
|
||
|
|
|
||
|
|
# Frontend (Next.js)
|
||
|
|
location / {
|
||
|
|
proxy_pass http://dyolink_frontend;
|
||
|
|
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;
|
||
|
|
proxy_read_timeout 300;
|
||
|
|
proxy_connect_timeout 300;
|
||
|
|
}
|
||
|
|
|
||
|
|
# Backend API
|
||
|
|
location /api {
|
||
|
|
proxy_pass http://dyolink_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;
|
||
|
|
proxy_read_timeout 300;
|
||
|
|
proxy_connect_timeout 300;
|
||
|
|
}
|
||
|
|
|
||
|
|
# Health check endpoint (no logging)
|
||
|
|
location /health {
|
||
|
|
access_log off;
|
||
|
|
return 200 "healthy\n";
|
||
|
|
add_header Content-Type text/plain;
|
||
|
|
}
|
||
|
|
|
||
|
|
# Deny access to hidden files
|
||
|
|
location ~ /\. {
|
||
|
|
deny all;
|
||
|
|
access_log off;
|
||
|
|
log_not_found off;
|
||
|
|
}
|
||
|
|
}
|