add accounts proxy

This commit is contained in:
Karol Wypchlo 2020-12-14 18:10:27 +01:00
parent 0d836bb877
commit 0f060272e2
1 changed files with 5 additions and 0 deletions

View File

@ -357,6 +357,11 @@ server {
# proxy_pass http://oathkeeper:4455;
#}
location /accounts {
rewrite /accounts/(.*) /$1 break;
proxy_pass http://accounts:3000;
}
# include custom locations, specific to the server
include /etc/nginx/conf.d/server-override/*;
}