ghost-nginx-ssl-docker icon indicating copy to clipboard operation
ghost-nginx-ssl-docker copied to clipboard

I had a lot of link that point to localhost

Open maathor opened this issue 6 years ago • 0 comments

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;`

maathor avatar Jun 03 '19 13:06 maathor