Skip to content

Commit

Permalink
Refactor nginx.conf to enable proxy_pass for /admin endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
jonkelling committed Jul 10, 2024
1 parent 6d2309b commit 6bde30a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions services/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ http {
proxy_pass http://web-gateway;
}

# location /admin {
# proxy_pass http://admin-gateway;
# }
location /admin {
proxy_pass http://admin-gateway;
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
Expand Down

0 comments on commit 6bde30a

Please sign in to comment.