diff --git a/nginx/nginx-dev/nginx-dev.conf b/nginx/nginx-dev/nginx-dev.conf index b88211d..5964de9 100644 --- a/nginx/nginx-dev/nginx-dev.conf +++ b/nginx/nginx-dev/nginx-dev.conf @@ -7,7 +7,7 @@ http { server_name dev.develop.sprinthub.ru; location / { - proxy_pass http://dev.develop.sprinthub.ru:1235/; + proxy_pass http://0.0.0.0:1235/; } } @@ -16,7 +16,7 @@ http { server_name swarmpit.develop.sprinthub.ru; location / { - proxy_pass http://dev.develop.sprinthub.ru:888/; + proxy_pass http://0.0.0.0:888/; } } @@ -25,7 +25,7 @@ http { server_name rabbitmq.develop.sprinthub.ru; location / { - proxy_pass http://dev.develop.sprinthub.ru:15672/; + proxy_pass http://0.0.0.0:15672/; } } @@ -34,7 +34,7 @@ http { server_name minio.develop.sprinthub.ru; location / { - proxy_pass http://dev.develop.sprinthub.ru:9001/; + proxy_pass http://0.0.0.0:9001/; } } } \ No newline at end of file diff --git a/nginx/nginx-prod/nginx-prod.conf b/nginx/nginx-prod/nginx-prod.conf index 83e5ac3..79fa382 100644 --- a/nginx/nginx-prod/nginx-prod.conf +++ b/nginx/nginx-prod/nginx-prod.conf @@ -7,7 +7,7 @@ http { server_name dev.sprinthub.ru; location / { - proxy_pass http://dev.sprinthub.ru:1235/; + proxy_pass http://0.0.0.0:1235/; } } @@ -16,7 +16,7 @@ http { server_name gitlab.sprinthub.ru; location / { - proxy_pass http://dev.sprinthub.ru:1234/; + proxy_pass http://0.0.0.0:1234/; } } @@ -25,7 +25,7 @@ http { server_name swarmpit.sprinthub.ru; location / { - proxy_pass http://dev.sprinthub.ru:888/; + proxy_pass http://0.0.0.0:888/; } } @@ -34,7 +34,7 @@ http { server_name rabbitmq.sprinthub.ru; location / { - proxy_pass http://dev.sprinthub.ru:15672/; + proxy_pass http://0.0.0.0:15672/; } } @@ -43,7 +43,7 @@ http { server_name minio.sprinthub.ru; location / { - proxy_pass http://dev.sprinthub.ru:9001/; + proxy_pass http://0.0.0.0:9001/; } } } \ No newline at end of file