Ghost/core/server/config/defaults.json
kirrg001 7d3e8fa8a9 🔦 add nconf files
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]
2016-09-20 15:59:34 +01:00

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"
}
}