1
0
This repository has been archived on 2017-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
informaticaD4P-2017/src/settings.php

22 lines
577 B
PHP
Raw Normal View History

2017-02-09 06:50:51 +00:00
<?php
return [
'settings' => [
'displayErrorDetails' => true, // set to false in production
'addContentLengthHeader' => false, // Allow the web server to send the content-length header
// Renderer settings
'renderer' => [
'template_path' => __DIR__ . '/../templates/',
2017-02-24 08:49:43 +00:00
],
// Database settings
'db' => [
'host' => '185.56.145.27',
2017-02-24 08:49:43 +00:00
'user' => 'inforban_db',
'pass' => 'inforbank',
'name' => 'inforban_db',
'charset' => 'utf8'
2017-02-09 06:50:51 +00:00
]
],
];