Skip to content
Snippets Groups Projects

local- conf

Merged Guilhem CARRON requested to merge local-conf into dev
All threads resolved!
Files
11
+ 3
5
server {
listen 443 ssl;
server_name localhost;
server_name local;
ssl_certificate /etc/nginx/cert.pem;
ssl_certificate_key /etc/nginx/key.pem;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!MD5;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
proxy_pass https://host.docker.internal:3000;
}
location /api {
proxy_pass https://backend:1443/api;
@@ -26,4 +24,4 @@ server {
location /swagger {
proxy_pass https://backend:1443/swagger;
}
}
}
\ No newline at end of file
Loading