fix(devops): nginx.conf for api

This commit is contained in:
Leandro Antônio Farias Machado 2023-06-08 02:00:11 -03:00
parent 790463234c
commit 330df2986f

View File

@ -45,7 +45,7 @@ http {
} }
server { server {
listen 443 http2; listen 443 ssl http2;
listen [::]:443 ssl http2; listen [::]:443 ssl http2;
server_name oktopustr369.com; server_name oktopustr369.com;
root /usr/share/nginx/html; root /usr/share/nginx/html;
@ -60,6 +60,10 @@ http {
ssl_ciphers PROFILE=SYSTEM; ssl_ciphers PROFILE=SYSTEM;
ssl_prefer_server_ciphers on; ssl_prefer_server_ciphers on;
error_page 404 /404.html;
location = /404.html {
}
location / { location / {
proxy_pass http://127.0.0.1:3000; proxy_pass http://127.0.0.1:3000;
proxy_read_timeout 60; proxy_read_timeout 60;
@ -73,7 +77,6 @@ http {
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade; proxy_cache_bypass $http_upgrade;
} }
location /api { location /api {
proxy_pass http://127.0.0.1:8001; proxy_pass http://127.0.0.1:8001;
proxy_read_timeout 60; proxy_read_timeout 60;
@ -87,7 +90,9 @@ http {
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade; proxy_cache_bypass $http_upgrade;
} }
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
} }