docker nginx conf

This commit is contained in:
Vicente Falco 2017-05-12 13:14:52 +02:00
parent 4df1a7898c
commit a9212721f1
1 changed files with 3 additions and 3 deletions

View File

@ -25,15 +25,15 @@ http {
}
location ~ ^/auth(?:/(.*))?$ {
proxy_pass http://192.168.99.100:3000/$1$is_args$args;
proxy_pass http://test-auth:3000/$1$is_args$args;
}
location ~ ^/salix(?:/(.*))?$ {
proxy_pass http://192.168.99.100:3001/$1$is_args$args;
proxy_pass http://test-salix:3001/$1$is_args$args;
}
location ~ ^/client(?:/(.*))?$ {
proxy_pass http://192.168.99.100:3002/$1$is_args$args;
proxy_pass http://test-client:3002/$1$is_args$args;
}
}
}