config.js
var path = require('path'),
? config;
config = {
? production: {
? ? url: 'http://mytestblog.com',
? ? mail: {},
? ? databgse: {
? ? ? client: 'mysql',
? ? ? connection: {
? ? ? ? host: 'db',
? ? ? ? user: 'ghost',
? ? ? ? password: 'ghost',
? ? ? ? database: 'ghost',
? ? ? ? port: '3306',
? ? ? ? charset: 'utf8',
? ? ? },
? ? ? debug: false,
? ? },
? ? paths: {
? ? ? contentPath: path.join(process.env.GHOST_CONTENT, '/'),
? ? },
? ? server: {
? ? ? host: '0.0.0.0',
? ? ? port: '2368',
? ? },
? },
};
module.exports = config;
2022-03-09
這個配置有什么不一樣、