45 lines
998 B
Plaintext
45 lines
998 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name autorizacion.saludut.com;
|
|
|
|
return 301 https://$host$request_uri;
|
|
}
|
|
|
|
server {
|
|
http2 on;
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
|
|
server_name autorizacion.saludut.com;
|
|
|
|
client_max_body_size 60m;
|
|
|
|
# ✅ Angular está dentro de /browser
|
|
root /var/www/autorizacion.saludut.com/htdocs/browser;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location /api/ {
|
|
client_max_body_size 60m;
|
|
|
|
proxy_pass http://127.0.0.1:3000;
|
|
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_read_timeout 600;
|
|
proxy_send_timeout 600;
|
|
}
|
|
|
|
error_page 404 /index.html;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/autorizacion.saludut.com/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/autorizacion.saludut.com/privkey.pem;
|
|
}
|
|
|