forked from bitrixdock/bitrixdock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.settings.php
71 lines (70 loc) · 1.75 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
69
70
71
<?php
return [
'utf_mode' => [
'value' => true,
'readonly' => true,
],
'cache_flags' => [
'value' => [
'config_options' => 3600,
'site_domain' => 3600,
],
'readonly' => false,
],
'session' => [
'value' => [
'mode' => 'default',
'handlers' => [
'general' => [
'type' => 'memcache',
'keyPrefix' => '#01',
'port' => 11211,
'host' => 'memcached',
],
],
],
],
'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' => 'bitrix',
'password' => '123',
'options' => 2.0,
],
],
'readonly' => true,
],
];