forked from bitrixdock/bitrixdock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.settings.php
68 lines (67 loc) · 1.8 KB
/
.settings.php
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
<?php
return [
'utf_mode' =>
[
'value' => true,
'readonly' => true,
],
'cache_flags' =>
[
'value' =>
[
'config_options' => 3600.0,
'site_domain' => 3600.0,
],
'readonly' => false,
],
'cache' => [
'value' => [
'type' => 'memcache',
'sid' => 'master',
'memcache' => [
'host' => 'memcached',
'port' => '11211'
],
],
'readonly' => true,
],
'cookies' =>
[
'value' =>
[
'secure' => false,
'http_only' => true,
],
'readonly' => false,
],
'exception_handling' =>
[
'value' =>
[
'debug' => true,
'handled_errors_types' => 4437,
'exception_errors_types' => 4437,
'ignore_silence' => false,
'assertion_throws_exception' => true,
'assertion_error_type' => 256,
'log' => NULL,
],
'readonly' => false,
],
'connections' =>
[
'value' =>
[
'default' =>
[
'className' => '\\Bitrix\\Main\\DB\\MysqliConnection',
'host' => 'db',
'database' => 'bitrix',
'login' => 'root',
'password' => '123',
'options' => 2.0,
],
],
'readonly' => true,
],
];