diff --git a/nginx-config/https/https-arti24-eu.conf b/nginx-config/https/https-arti24-eu.conf index 7935c43..e10516e 100644 --- a/nginx-config/https/https-arti24-eu.conf +++ b/nginx-config/https/https-arti24-eu.conf @@ -11,6 +11,16 @@ server { ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers HIGH:!aNULL:!MD5; + location /cv-angular{ + proxy_pass http://arti-angular-app:4200; + + 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 Host $host; + proxy_set_header X-Forwarded-Host $host; + proxy_set_header X-Forwarded-Port $server_port; + } location / { @@ -24,6 +34,7 @@ server { proxy_set_header X-Forwarded-Port $server_port; } + }