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

<?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/',
],
// Database settings
'db' => [
'host' => '185.56.145.27',
'user' => 'inforban_db',
'pass' => 'inforbank',
'name' => 'inforban_db',
'charset' => 'utf8'
]
],
];