|
|
@@ -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;
|
|
|
}
|