75 lines
2.2 KiB
Plaintext
75 lines
2.2 KiB
Plaintext
|
|
# HTTP - Redireciona para HTTPS
|
||
|
|
server {
|
||
|
|
listen 80;
|
||
|
|
server_name vida180.com.br www.vida180.com.br;
|
||
|
|
|
||
|
|
location /.well-known/acme-challenge/ {
|
||
|
|
root /var/www/certbot;
|
||
|
|
}
|
||
|
|
|
||
|
|
location / {
|
||
|
|
return 301 https://$host$request_uri;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
# HTTPS - Frontend
|
||
|
|
server {
|
||
|
|
listen 443 ssl http2;
|
||
|
|
server_name vida180.com.br www.vida180.com.br;
|
||
|
|
|
||
|
|
# SSL certificados (serão gerados pelo certbot)
|
||
|
|
ssl_certificate /etc/letsencrypt/live/vida180.com.br/fullchain.pem;
|
||
|
|
ssl_certificate_key /etc/letsencrypt/live/vida180.com.br/privkey.pem;
|
||
|
|
|
||
|
|
# SSL configuração
|
||
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||
|
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||
|
|
ssl_prefer_server_ciphers on;
|
||
|
|
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 Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
|
||
|
|
|
||
|
|
# Frontend (React)
|
||
|
|
location / {
|
||
|
|
proxy_pass http://frontend:3000;
|
||
|
|
proxy_http_version 1.1;
|
||
|
|
proxy_set_header Upgrade $http_upgrade;
|
||
|
|
proxy_set_header Connection 'upgrade';
|
||
|
|
proxy_set_header Host $host;
|
||
|
|
proxy_cache_bypass $http_upgrade;
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
|
||
|
|
# Backend API
|
||
|
|
location /api/ {
|
||
|
|
proxy_pass http://backend:8000/api/;
|
||
|
|
proxy_http_version 1.1;
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
|
||
|
|
# Backend Docs
|
||
|
|
location /docs {
|
||
|
|
proxy_pass http://backend:8000/docs;
|
||
|
|
proxy_http_version 1.1;
|
||
|
|
proxy_set_header Host $host;
|
||
|
|
proxy_set_header X-Real-IP $remote_addr;
|
||
|
|
}
|
||
|
|
|
||
|
|
location /redoc {
|
||
|
|
proxy_pass http://backend:8000/redoc;
|
||
|
|
proxy_http_version 1.1;
|
||
|
|
proxy_set_header Host $host;
|
||
|
|
proxy_set_header X-Real-IP $remote_addr;
|
||
|
|
}
|
||
|
|
}
|