UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit e42289f7 authored by Patrick Tafoya's avatar Patrick Tafoya
Browse files

fix for broken placeholders

parent f915a807
No related branches found
No related tags found
No related merge requests found
# setup for fiesta-wagon-ingress
server {
listen 443 ssl;
server_name {projectName}.dev.bigbang.mil;
server_name {{projectName}}.dev.bigbang.mil;
location = /_auth {
internal;
......@@ -21,14 +21,14 @@ server {
# if the dev build server is down, try to serve the production build
error_page 502 = @fallback;
set $ui_proxy {projectName}-ui:8080;
set $ui_proxy {{projectName}}-ui:8080;
proxy_pass http://$ui_proxy;
}
location @fallback {
include snippets/proxy-params.conf;
set $ui_proxy {projectName}-ui:8080;
set $ui_proxy {{projectName}}-ui:8080;
proxy_pass http://$ui_proxy;
}
......@@ -39,7 +39,7 @@ server {
include snippets/proxy-params.conf;
set $api_proxy {projectName}-api:8000;
set $api_proxy {{projectName}}-api:8000;
proxy_pass http://$api_proxy/api$1$is_args$args;
}
}
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