73 lines
1.8 KiB
Plaintext
73 lines
1.8 KiB
Plaintext
|
|
upstream frontend {
|
||
|
|
server pdimaker-web:3000;
|
||
|
|
}
|
||
|
|
|
||
|
|
upstream backend {
|
||
|
|
server pdimaker-api:4000;
|
||
|
|
}
|
||
|
|
|
||
|
|
# Redirecionar HTTP para HTTPS
|
||
|
|
server {
|
||
|
|
listen 80 default_server;
|
||
|
|
listen [::]:80 default_server;
|
||
|
|
server_name pdimaker.com.br www.pdimaker.com.br;
|
||
|
|
|
||
|
|
return 301 https://$host$request_uri;
|
||
|
|
}
|
||
|
|
|
||
|
|
# HTTPS - Frontend
|
||
|
|
server {
|
||
|
|
listen 443 ssl http2 default_server;
|
||
|
|
listen [::]:443 ssl http2 default_server;
|
||
|
|
server_name pdimaker.com.br www.pdimaker.com.br;
|
||
|
|
|
||
|
|
ssl_certificate /etc/nginx/ssl/fullchain.pem;
|
||
|
|
ssl_certificate_key /etc/nginx/ssl/privkey.pem;
|
||
|
|
|
||
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||
|
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||
|
|
ssl_prefer_server_ciphers on;
|
||
|
|
|
||
|
|
location / {
|
||
|
|
proxy_pass http://frontend;
|
||
|
|
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;
|
||
|
|
proxy_set_header Upgrade $http_upgrade;
|
||
|
|
proxy_set_header Connection "upgrade";
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
# HTTP - API
|
||
|
|
server {
|
||
|
|
listen 80;
|
||
|
|
server_name api.pdimaker.com.br;
|
||
|
|
|
||
|
|
return 301 https://$host$request_uri;
|
||
|
|
}
|
||
|
|
|
||
|
|
# HTTPS - API
|
||
|
|
server {
|
||
|
|
listen 443 ssl http2;
|
||
|
|
listen [::]:443 ssl http2;
|
||
|
|
server_name api.pdimaker.com.br;
|
||
|
|
|
||
|
|
ssl_certificate /etc/nginx/ssl/fullchain.pem;
|
||
|
|
ssl_certificate_key /etc/nginx/ssl/privkey.pem;
|
||
|
|
|
||
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||
|
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||
|
|
ssl_prefer_server_ciphers on;
|
||
|
|
|
||
|
|
location / {
|
||
|
|
proxy_pass http://backend;
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
}
|