From ef8fed315957f33acb92feb45939f778a6b04189 Mon Sep 17 00:00:00 2001 From: William Dibbern Date: Thu, 26 Sep 2013 17:43:43 -0500 Subject: [PATCH] Added comments to config for ports Fixes #874 - Added comments to clarify that you should set the port to `process.env.PORT` when running ghost under iisnode. --- config.example.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config.example.js b/config.example.js index bfdb4b15558..ac5e35dc18e 100644 --- a/config.example.js +++ b/config.example.js @@ -34,7 +34,9 @@ config = { debug: false }, server: { + // Host to be passed to node's `net.Server#listen()` host: '127.0.0.1', + // Port to be passed to node's `net.Server#listen()`, for iisnode set this to `process.env.PORT` port: '2368' } }, @@ -53,7 +55,9 @@ config = { debug: false }, server: { + // Host to be passed to node's `net.Server#listen()` host: '127.0.0.1', + // Port to be passed to node's `net.Server#listen()`, for iisnode set this to `process.env.PORT` port: '2368' } },