Skip to content
Snippets Groups Projects
Commit a1f01955 authored by Jacob Benz's avatar Jacob Benz
Browse files

add turining engine to routed services

parent c0bfefd8
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,12 @@ server {
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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment