Newer
Older
server {
server_name localhost;
location /keycloak {
proxy_pass http://keycloak:8080;
proxy_pass_request_headers on;
}
location /turning-engine {
rewrite /turning-engine/(.*) /$1 break;
proxy_pass http://turning-engine;
proxy_pass_request_headers on;
}
location /auth-api {
rewrite /auth-api/(.*) /$1 break;
proxy_pass http://auth-api:3000;
proxy_pass_request_headers on;
}
location /authority-api {
rewrite /authority-api/(.*) /$1 break;
proxy_pass http://authority-api:5700;
proxy_pass_request_headers on;
}
location / {
proxy_pass http://leafwriter:3000;
proxy_pass_request_headers on;
}
}