diff --git a/docker/nginx/conf.d/client.conf b/docker/nginx/conf.d/client.conf index 451aedc6..84157da3 100644 --- a/docker/nginx/conf.d/client.conf +++ b/docker/nginx/conf.d/client.conf @@ -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/*; }