From a9212721f148f675f702fe82bfeb369afc40d2fb Mon Sep 17 00:00:00 2001 From: Vicente Falco Date: Fri, 12 May 2017 13:14:52 +0200 Subject: [PATCH] docker nginx conf --- services/nginx/conf-prod.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/services/nginx/conf-prod.conf b/services/nginx/conf-prod.conf index e0c9529b1..c2a028fa8 100644 --- a/services/nginx/conf-prod.conf +++ b/services/nginx/conf-prod.conf @@ -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; } } } \ No newline at end of file