DeltaCMS/config.jsonc
2019-04-25 17:13:02 +02:00

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