Răsfoiți Sursa

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

Romain 5 ani în urmă
părinte
comite
082b1c7bb4
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  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;
 }