Created
March 5, 2016 18:41
-
-
Save pascalandy/6c3c33c92035bf32b93f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var path = require('path'), | |
config; | |
config = { | |
// ### Production | |
// When running Ghost in the wild, use the production environment | |
// Configure your URL and mail settings here | |
production: { | |
url: 'http://mysite.com', | |
mail: { | |
// Your mail settings | |
}, | |
database: { | |
client: 'sqlite3', | |
connection: { | |
filename: path.join(__dirname, '/content/data/ghost.db') | |
}, | |
debug: false | |
}, | |
server: { | |
// Host to be passed to node's `net.Server#listen()` | |
host: '0.0.0.0', | |
// Port to be passed to node's `net.Server#listen()`, for iisnode s$ | |
port: '2368' | |
} | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment