Add IR Valuation frontend route to nginx
All checks were successful
Deploy Nginx Config to Ubuntu Server / deploy (push) Successful in 2s
All checks were successful
Deploy Nginx Config to Ubuntu Server / deploy (push) Successful in 2s
This commit is contained in:
parent
920672ae1b
commit
b4ac7ac2b8
@ -89,6 +89,12 @@ server {
|
||||
try_files $uri /goosefarm/index.html;
|
||||
}
|
||||
|
||||
# IR Valuation Frontend
|
||||
location /ir-valuation {
|
||||
alias /home/admin/frontend-ir-valuation/dist/;
|
||||
try_files $uri /ir-valuation/index.html;
|
||||
}
|
||||
|
||||
# API endpoints -> route to gateway (host 8100 -> container 8000)
|
||||
location /api/ {
|
||||
proxy_pass http://localhost:8100;
|
||||
@ -227,6 +233,12 @@ server {
|
||||
try_files $uri /goosefarm/index.html;
|
||||
}
|
||||
|
||||
# IR Valuation Frontend
|
||||
location /ir-valuation {
|
||||
alias /home/admin/frontend-ir-valuation/dist/;
|
||||
try_files $uri /ir-valuation/index.html;
|
||||
}
|
||||
|
||||
# API endpoints -> route to gateway (host 8100 -> container 8000)
|
||||
location /api/ {
|
||||
proxy_pass http://localhost:8100;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user