1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
|
<?php
/**
* Core configuration file for UserFrosting. You must override/extend this in your site's configuration file.
*
* Sensitive credentials should be stored in an environment variable or your .env file.
* Database password: DB_PASSWORD
* SMTP server password: SMTP_PASSWORD
*/
return [
'address_book' => [
'admin' => [
'email' => getenv('SMTP_USER') ?: null,
'name' => 'Site Administrator'
]
],
'alert' => [
'storage' => 'session', // Set to one of `cache` or `session`
'key' => 'site.alerts', // the key to use to store flash messages
],
'assets' => [
'compiled' => [
'path' => 'assets',
'schema' => 'bundle.result.json'
],
'raw' => [
'path' => 'assets-raw',
'schema' => 'asset-bundles.json'
],
'use_raw' => true
],
'cache' => [
'driver' => 'file', // Set to one of `file`, `memcached`, `redis`
'prefix' => 'userfrosting', // Edit prefix to something unique when multiple instance of memcached/redis are used on the same server
'memcached' => [
'host' => '127.0.0.1',
'port' => 11211,
'weight' => 100
],
'redis' => [
'host' => '127.0.0.1',
'password' => null,
'port' => 6379,
'database' => 0
],
'twig' => false
],
// CSRF middleware settings (see https://github.com/slimphp/Slim-Csrf)
'csrf' => [
'name' => 'csrf',
'storage_limit' => 200,
'strength' => 16,
'persistent_token' => true,
// A list of url paths to ignore CSRF checks on
'blacklist' => [
// URL paths will be matched against each regular expression in this list.
// Each regular expression should map to an array of methods.
// Regular expressions will be delimited with ~ in preg_match, so if you
// have routes with ~ in them, you must escape this character in your regex.
// Also, remember to use ^ when you only want to match the beginning of a URL path!
]
],
'db' => [
'default' => [
'driver' => getenv('DB_DRIVER') ?: 'mysql',
'host' => getenv('DB_HOST') ?: null,
'port' => getenv('DB_PORT') ?: null,
'database' => getenv('DB_NAME') ?: null,
'username' => getenv('DB_USER') ?: null,
'password' => getenv('DB_PASSWORD') ?: null,
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => ''
]
],
'debug' => [
'queries' => false,
'smtp' => false,
'twig' => false
],
'mail' => [
'mailer' => 'smtp', // Set to one of 'smtp', 'mail', 'qmail', 'sendmail'
'host' => getenv('SMTP_HOST') ?: null,
'port' => 465,
'auth' => true,
'secure' => 'ssl',
'username' => getenv('SMTP_USER') ?: null,
'password' => getenv('SMTP_PASSWORD') ?: null,
'smtp_debug' => 4,
'message_options' => [
'CharSet' => 'UTF-8',
'isHtml' => true,
'Timeout' => 15
]
],
// Filesystem paths
'path' => [
'document_root' => str_replace(DIRECTORY_SEPARATOR, \UserFrosting\DS, $_SERVER['DOCUMENT_ROOT']),
'public_relative' => dirname($_SERVER['SCRIPT_NAME']) // The location of `index.php` relative to the document root. Use for sites installed in subdirectories of your web server's document root.
],
'session' => [
'handler' => 'file',
// Config values for when using db-based sessions
'database' => [
'table' => 'sessions'
],
'name' => 'uf4',
'minutes' => 120,
'cache_limiter' => false,
// Decouples the session keys used to store certain session info
'keys' => [
'csrf' => 'site.csrf', // the key (prefix) used to store an ArrayObject of CSRF tokens.
]
],
// Slim settings - see http://www.slimframework.com/docs/objects/application.html#slim-default-settings
'settings' => [
'displayErrorDetails' => true
],
// "Site" settings that are automatically passed to Twig
'site' => [
'AdminLTE' => [
'skin' => 'blue'
],
'analytics' => [
'google' => [
'code' => '',
'enabled' => false
]
],
'author' => 'Author',
'csrf' => null, // Do not set this variable. The core Twig extension will override it with values from the CSRF service.
'debug' => [
'ajax' => false,
'info' => true
],
'locales' => [
// Should be ordered according to https://en.wikipedia.org/wiki/List_of_languages_by_total_number_of_speakers,
// with the exception of English, which as the default language comes first.
'available' => [
'en_US' => 'English',
'zh_CN' => '中文',
'es_ES' => 'Español',
'ar' => 'العربية',
'pt_PT' => 'Português',
'ru_RU' => 'русский',
'de_DE' => 'Deutsch',
'fr_FR' => 'Français',
'tr' => 'Türk',
'it_IT' => 'Italiano',
'th_TH' => 'ภาษาไทย',
'fa' => 'فارسی'
],
// This can be a comma-separated list, to load multiple fallback locales
'default' => 'en_US'
],
'title' => 'BEAM-Messenger',
// Global ufTable settings
'uf_table' => [
'use_loading_transition' => true
],
// URLs
'uri' => [
'base' => [
'host' => isset($_SERVER['SERVER_NAME']) ? trim($_SERVER['SERVER_NAME'], '/') : 'localhost',
'scheme' => empty($_SERVER['HTTPS']) || $_SERVER['HTTPS'] === 'off' ? 'http' : 'https',
'port' => isset($_SERVER['SERVER_PORT']) ? (int) $_SERVER['SERVER_PORT'] : null,
'path' => isset($_SERVER['SCRIPT_NAME']) ? trim(dirname($_SERVER['SCRIPT_NAME']), '/\\') : ''
],
'author' => 'https://marvinborner.me',
'publisher' => 'https://marvinborner.me'
]
],
'php' => [
'timezone' => 'Europe/Berlin',
'error_reporting' => E_ALL, // Development - report all errors and suggestions
'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'
]
];
|