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.
This commit is contained in:
William Dibbern 2013-09-26 17:43:43 -05:00 committed by Hannah Wolfe
parent 6605ce1c71
commit ef8fed3159

View File

@ -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'
}
},