|
@@ -17,10 +17,17 @@ http {
|
|
|
access_log logs/nginx_access.log;
|
|
access_log logs/nginx_access.log;
|
|
|
|
|
|
|
|
server {
|
|
server {
|
|
|
- listen 8001;
|
|
|
|
|
server_name localhost;
|
|
server_name localhost;
|
|
|
charset utf-8;
|
|
charset utf-8;
|
|
|
|
|
|
|
|
|
|
+ # If running hue on http://
|
|
|
|
|
+ listen 8001;
|
|
|
|
|
+
|
|
|
|
|
+ # If running hue on https://
|
|
|
|
|
+ ## listen 8001 ssl;
|
|
|
|
|
+ ## ssl_certificate /path/to/ssl/cert;
|
|
|
|
|
+ ## ssl_certificate_key /path/to/ssl/key;
|
|
|
|
|
+
|
|
|
location / {
|
|
location / {
|
|
|
proxy_pass http://hue;
|
|
proxy_pass http://hue;
|
|
|
}
|
|
}
|