7d3e8fa8a9
refs #6982 - add defaults.json - add overrides.json - add env specific default values - add nconf wrapper in /config - add config utils in /config/utils.js [ci skip]
36 lines
806 B
JSON
36 lines
806 B
JSON
{
|
|
"url": "http://localhost:2368",
|
|
"urlSSL": false,
|
|
"forceAdminSSL": false,
|
|
"server": {
|
|
"host": "127.0.0.1",
|
|
"port": 2368
|
|
},
|
|
"database": {
|
|
"client": "sqlite3",
|
|
"debug": false,
|
|
"connection": {
|
|
"filename": "content/data/ghost.db"
|
|
}
|
|
},
|
|
"privacy": false,
|
|
"paths": {
|
|
"contentPath": "content/",
|
|
"themePath": "content/themes/",
|
|
"imagesPath": "content/images/",
|
|
"appPath": "content/apps/",
|
|
"storagePath": {
|
|
"custom": "content/storage/"
|
|
},
|
|
"schedulingPath": "core/server/scheduling/"
|
|
},
|
|
"storage": {
|
|
"active": {
|
|
"images": "local-file-store"
|
|
}
|
|
},
|
|
"scheduling": {
|
|
"active": "SchedulingDefault"
|
|
}
|
|
}
|