Skip to content

Instantly share code, notes, and snippets.

@pascalandy
Created March 5, 2016 18:41
Show Gist options
  • Save pascalandy/6c3c33c92035bf32b93f to your computer and use it in GitHub Desktop.
Save pascalandy/6c3c33c92035bf32b93f to your computer and use it in GitHub Desktop.
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