mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
d9e87aa793
* 🎨 update configuration files: database refs #7488 - no default database configuration - production: default is MySQL * 🎨 add transport stdout to production for now refs #7488 - production will log to stdout and file for now - to reduce the risk of confusing users - users would not see any stdout and they don't know that Ghost logs into file only in production * 🎨 sanitize database properties refs #7488
24 lines
476 B
JSON
24 lines
476 B
JSON
{
|
|
"url": "http://localhost:2368",
|
|
"database": {
|
|
"client": "sqlite3",
|
|
"connection": {
|
|
"filename": "content/data/ghost-dev.db"
|
|
},
|
|
"debug": false
|
|
},
|
|
"paths": {
|
|
"contentPath": "content/"
|
|
},
|
|
"privacy": {
|
|
"useRpcPing": false,
|
|
"useUpdateCheck": true
|
|
},
|
|
"minifyAssets": false,
|
|
"printErrorStack": true,
|
|
"caching": {
|
|
"theme": {
|
|
"maxAge": 0
|
|
}
|
|
}
|
|
}
|