12345678910111213141516171819202122 |
- [common]
- application.directory = APP_PATH "/app"
- application.modules = "Index,Bench"
- application.library = APP_PATH "/library"
- application.library.directory = APP_PATH "/library"
- application.view.ext = phtml
- db.connections.default.dsn = "mysql:host=localhost;port=3306;dbname=hello_world;charset=utf8"
- db.connections.default.user = benchmarkdbuser
- db.connections.default.pass = benchmarkdbpass
- db.connections.default.params.ATTR_ERRMODE = 2 ; PDO::ERRMODE_EXCEPTION
- db.connections.default.params.ATTR_PERSISTENT = TRUE
- [dev:common]
- application.dispatcher.throwException=1
- application.dispatcher.catchException=1
- application.debug = TRUE
- [product:common]
- application.dispatcher.throwException=0
- application.dispatcher.catchException=0
- application.debug = FALSE
|