Skip to content
Snippets Groups Projects
Commit e668ccc6 authored by Daniel Lyons's avatar Daniel Lyons
Browse files

Fixing an nginx configuration issue

parent 4ad42049
No related branches found
No related tags found
2 merge requests!1452Merge 2.8.2 to main,!1396changes for local builds
Pipeline #10344 passed
......@@ -20,14 +20,14 @@ server {
location /workflows {
proxy_pass http://${ENV_HOST}:3456;
proxy_redirect default;
proxy_redirect http://${ENV_HOST}:3456 /workflows;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /notify {
proxy_pass http://${ENV_HOST}:3458;
proxy_redirect default;
proxy_redirect http://${ENV_HOST}:3458 /notify;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment