ghost-nginx-ssl-docker
ghost-nginx-ssl-docker copied to clipboard
I had a lot of link that point to localhost
my conf is well, i think: `
var path = require('path'),
config;
config = {
production: {
url: 'https://monkey-garage.club',
mail: {},
database: {
client: 'sqlite3',
connection: {
filename: path.join(process.env.GHOST_CONTENT, '/data/ghost.db')
},
debug: false
},
server: {
host: '0.0.0.0',
port: '2368'
},
paths: {
contentPath: path.join(process.env.GHOST_CONTENT, '/')
}
}
}
module.exports = config;`