mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03: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
57 lines
1.2 KiB
JSON
57 lines
1.2 KiB
JSON
{
|
|
"url": "http://127.0.0.1:2369",
|
|
"database": {
|
|
"client": "sqlite3",
|
|
"connection": {
|
|
"filename": "content/data/ghost-test.db"
|
|
},
|
|
"useNullAsDefault": true,
|
|
"debug": false
|
|
},
|
|
"server": {
|
|
"port": 2369
|
|
},
|
|
"auth": {
|
|
"type": "password"
|
|
},
|
|
"logging": {
|
|
"level": "fatal"
|
|
},
|
|
"spam": {
|
|
"user_login": {
|
|
"minWait": 600000,
|
|
"maxWait": 604800000,
|
|
"freeRetries": 3
|
|
},
|
|
"user_reset": {
|
|
"minWait": 3600000,
|
|
"maxWait": 3600000,
|
|
"lifetime": 3600,
|
|
"freeRetries": 4
|
|
},
|
|
"global_reset": {
|
|
"minWait": 3600000,
|
|
"maxWait": 3600000,
|
|
"lifetime": 3600,
|
|
"freeRetries":4
|
|
},
|
|
"global_block": {
|
|
"minWait": 3600000,
|
|
"maxWait": 3600000,
|
|
"lifetime": 3600,
|
|
"freeRetries":4
|
|
},
|
|
"private_block": {
|
|
"minWait": 3600000,
|
|
"maxWait": 3600000,
|
|
"lifetime": 3600,
|
|
"freeRetries":99
|
|
}
|
|
},
|
|
"privacy": {
|
|
"useTinfoil": true,
|
|
"useStructuredData": true
|
|
},
|
|
"minifyAssets": false
|
|
}
|