From 619b01b3615458c4ed78bfaeabb6b1a47cc8ad8b Mon Sep 17 00:00:00 2001 From: marvin-borner@live.com Date: Sun, 15 Apr 2018 19:16:19 +0200 Subject: Preparing for soon implementation of content management system --- login/app/sprinkles/core/config/default.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'login/app/sprinkles/core/config') diff --git a/login/app/sprinkles/core/config/default.php b/login/app/sprinkles/core/config/default.php index b6862e6..e560493 100755 --- a/login/app/sprinkles/core/config/default.php +++ b/login/app/sprinkles/core/config/default.php @@ -82,9 +82,9 @@ 'mail' => [ 'mailer' => 'smtp', // Set to one of 'smtp', 'mail', 'qmail', 'sendmail' 'host' => getenv('SMTP_HOST') ?: null, - 'port' => 587, + 'port' => 465, 'auth' => true, - 'secure' => 'tls', + 'secure' => 'ssl', 'username' => getenv('SMTP_USER') ?: null, 'password' => getenv('SMTP_PASSWORD') ?: null, 'smtp_debug' => 4, @@ -154,7 +154,7 @@ // This can be a comma-separated list, to load multiple fallback locales 'default' => 'en_US' ], - 'title' => 'UserFrosting', + 'title' => 'SocialNetwork', // Global ufTable settings 'uf_table' => [ 'use_loading_transition' => true @@ -167,15 +167,15 @@ 'port' => isset($_SERVER['SERVER_PORT']) ? (int) $_SERVER['SERVER_PORT'] : null, 'path' => isset($_SERVER['SCRIPT_NAME']) ? trim(dirname($_SERVER['SCRIPT_NAME']), '/\\') : '' ], - 'author' => 'https://www.userfrosting.com', - 'publisher' => '' + 'author' => 'Marvin Borner', + 'publisher' => 'Marvin Borner' ] ], 'php' => [ - 'timezone' => 'America/New_York', + 'timezone' => 'Europe/Berlin', 'error_reporting' => E_ALL, // Development - report all errors and suggestions - 'display_errors' => 'true', - 'log_errors' => 'false', + 'display_errors' => 'false', + 'log_errors' => 'true', // Let PHP itself render errors natively. Useful if a fatal error is raised in our custom shutdown handler. 'display_errors_native' => 'false' ] -- cgit v1.2.3