Explorar o código

HUE-8888 [docker] Expect api to run on standart port 8888

Romain %!s(int64=5) %!d(string=hai) anos
pai
achega
082b1c7bb4
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      tools/docker/nginx/hue.conf

+ 2 - 2
tools/docker/nginx/hue.conf

@@ -10,7 +10,7 @@ server {
     ## ssl_certificate_key /path/to/ssl/key;
 
     location / {
-        proxy_pass http://localhost:9000;
+        proxy_pass http://127.0.0.1:8888;
 
         # Or if the upstream Hue instances are running behind https://
         ## proxy_pass https://hue;
@@ -28,6 +28,6 @@ upstream hue {
     ip_hash;
 
     # List all the Hue instances here for high availability.
-    server localhost:9000 max_fails=3;
+    server 127.0.0.1:8888 max_fails=3;
     #server HUE_HOST2:8888 max_fails=3;
 }