This commit is contained in:
Vicente Falco 2017-05-29 13:48:20 +02:00
parent 034bd93c99
commit 0ad4558c17
2 changed files with 8 additions and 0 deletions

View File

@ -40,6 +40,10 @@ http {
location ~ ^/client(?:/(.*))?$ {
proxy_pass http://127.0.0.1:3002/$1$is_args$args;
}
location ~ ^/mailer(?:/(.*))?$ {
proxy_pass http://127.0.0.1:3003/$1$is_args$args;
}
}
types {

View File

@ -35,5 +35,9 @@ http {
location ~ ^/client(?:/(.*))?$ {
proxy_pass http://client:3002/$1$is_args$args;
}
location ~ ^/mailer(?:/(.*))?$ {
proxy_pass http://127.0.0.1:3003/$1$is_args$args;
}
}
}