1
0
Эх сурвалжийг харах

Merge branch 'patch-1' of https://github.com/flantel/ztncui into flantel-patch-1

Key Networks 7 жил өмнө
parent
commit
30b71ac492
1 өөрчлөгдсөн 9 нэмэгдсэн , 2 устгасан
  1. 9 2
      src/bin/www

+ 9 - 2
src/bin/www

@@ -31,12 +31,19 @@ const https_host = process.env.HTTPS_HOST || null;
 app.set('https_host', https_host);
 
 /**
- * Create HTTPS server and listen on localhost only for HTTP and
+ * Create HTTPS server and listen on localhost only for HTTP, unless the 
+ * environment variable HTTP_ALL_INTERFACES is set, and
  * on all network interfaces for HTTPS if HTTPS_PORT is set in env,
  * or on specific interface if HTTPS_HOST is set in env.
  */
 
-app.listen(http_port, 'localhost');
+const http_all_int = process.env.HTTP_ALL_INTERFACES || null;
+if (http_all_int) {
+    app.listen(http_port);  
+} else {
+    app.listen(http_port, 'localhost');
+}
+
 const server = https.createServer(options, app);
 
 if (https_port) {