initial commit
This commit is contained in:
54
config/autoload/local.php
Executable file
54
config/autoload/local.php
Executable file
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/**
|
||||
* Local Configuration Override
|
||||
*
|
||||
* This configuration override file is for overriding environment-specific and
|
||||
* security-sensitive configuration information. Copy this file without the
|
||||
* .dist extension at the end and populate values as needed.
|
||||
*
|
||||
* @NOTE: This file is ignored from Git by default with the .gitignore included
|
||||
* in ZendSkeletonApplication. This is a good practice, as it prevents sensitive
|
||||
* credentials from accidentally being committed into version control.
|
||||
*/
|
||||
|
||||
return [
|
||||
'doctrine' => [
|
||||
'connection' => array(
|
||||
'default' => array(
|
||||
'params' => [
|
||||
'user' => 'root',
|
||||
'password' => '123456',
|
||||
'host' => '127.0.0.1',
|
||||
'dbname' => 'silas_wordRotator',
|
||||
'driverOptions' => array(
|
||||
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'
|
||||
),
|
||||
'useStrict' => true,
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
'mailEinstellungen' => array(
|
||||
'options' => array(
|
||||
'name' => 'Stories',
|
||||
'host' => 'eltanin.uberspace.de',
|
||||
'port' => '587',
|
||||
'connection_class' => 'plain', // plain oder login
|
||||
'connection_config' => array(
|
||||
'username' => 'silas',
|
||||
'password' => 'l$?%u<M4j)|>sN\\Oj\\/l0VQ%IF',
|
||||
'ssl' => 'tls',
|
||||
),
|
||||
),
|
||||
'sender' => 'stories@silas.link',
|
||||
),
|
||||
|
||||
'systemVariables' => array(
|
||||
'passwordHash' => '',
|
||||
'websiteName' => '',
|
||||
'maxAgeOfUserCodes' => 2 //In Tagen
|
||||
),
|
||||
'view_manager' => [
|
||||
'display_exceptions' => true,
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user