mirror of
https://github.com/Aviortheking/DeltaCMS.git
synced 2025-04-22 19:02:12 +00:00
33 lines
476 B
JSON
33 lines
476 B
JSON
{
|
|
"database": {
|
|
//driver to use with database
|
|
"driver": "pdo_mysql",
|
|
|
|
// host of database
|
|
"host": "127.0.0.1",
|
|
|
|
// database name
|
|
"dbname": "aptatio",
|
|
|
|
// user to use
|
|
"user": "aptatio",
|
|
|
|
//user's password
|
|
"password": "aptatio"
|
|
},
|
|
"cache": {
|
|
|
|
// enable/disable the cache
|
|
"enabled": "false",
|
|
|
|
//path to cache folder
|
|
"path": "cache/",
|
|
|
|
// driver to use with cache
|
|
"driver": "\\DeltaCMS\\Cache\\FileCache",
|
|
"options": {
|
|
"ttl": null
|
|
}
|
|
}
|
|
}
|