phpvms/resources/stubs/installer/config.stub

111 lines
2.6 KiB
Plaintext
Raw Normal View History

<?php
/**
* This file overrides any of the config files in the /config directory.
* The root key is the name of the file, and then the structure within.
* The config is merged, so only include what you want to override
*/
return [
// Overrides config/app.php
'app' => [
'name' => '$SITE_NAME$',
'url' => '$SITE_URL$',
# Don't forget to change these when live
'env' => 'prod',
'debug' => false,
],
// Overrides config/phpvms.php
'phpvms' => [
/**
* The ISO "Currency Code" to use, the list is in config/money.php
*
* Note, do not change this after you've set it, unless you don't
* care that the currencies aren't "exchanged" into the new format
*/
'currency' => 'USD',
],
// This is the name of the active theme
// Overrides config/themes.php
'themes' => [
'default' => 'default',
],
// Overrides config/vacentral.php
'vacentral' => [
'api_key' => '',
],
//
// Other settings and configuration you might not need to modify
//
2018-03-16 23:50:04 +08:00
// Overrides config/cache.php
'cache' => [
'default' => '$CACHE_DRIVER$',
'prefix' => '$CACHE_PREFIX$',
],
2018-03-17 00:38:06 +08:00
/*
* You can get a captcha key from here:
* https://www.google.com/recaptcha/admin
*/
2018-03-16 23:50:04 +08:00
'captcha' => [
2018-03-17 00:38:06 +08:00
'enabled' => false,
2018-03-16 23:50:04 +08:00
'sitekey' => '',
'secret' => '',
2018-03-17 00:38:06 +08:00
# Attributes can be found here:
# https://developers.google.com/recaptcha/docs/display#render_param
'attributes' => [
'data-theme' => 'light',
],
2018-03-16 23:50:04 +08:00
],
// Overrides config/database.php
'database' => [
'default' => env('DB_CONNECTION', '$DB_CONN$'),
'connections' => [
'mysql' => [
'host' => '$DB_HOST$',
'port' => $DB_PORT$,
'database' => '$DB_NAME$',
'username' => '$DB_USER$',
'password' => '$DB_PASS$',
'prefix' => '$DB_PREFIX$',
],
],
],
// Overrides config/logging.php
2018-02-20 01:09:56 +08:00
'logging' => [
'channels' => [
'single' => ['level' => 'debug'],
'daily' => ['level' => 'debug'],
],
],
// Overrides config/mail.php
'mail' => [
'driver' => 'mail',
'host' => '',
'port' => 587,
'from' => [
'name' => '',
'address' => '',
],
'username' => '',
'password' => '',
],
// Overrides config/session.php
2018-02-03 10:39:51 +08:00
'session' => [
'default' => 'file',
'lifetime' => 60 * 24, # 24 hours
],
];