-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.php.dist
41 lines (41 loc) · 1.07 KB
/
config.php.dist
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
<?php
return [
'currencyList' => [
0 => 'USD',
1 => 'EUR',
2 => 'PLN'
],
'defaultCurrency' => 'PLN',
'baseCurrency' => 'PLN',
'currencyRates' => [
'USD' => 1,
'EUR' => 1
],
'theme' => 'DarkVertical',
'defaultPermissions' => [
'user' => null,
'group' => null
],
'useWebSocket' => true,
'webSocketUrl' => 'ws://localhost:8080/ws',
'webSocketZeroMQSubscriberDsn' => 'tcp://*:7777',
'webSocketZeroMQSubmissionDsn' => 'tcp://espocrm-websocket:7777',
'timeZone' => 'Europe/Warsaw',
'dateFormat' => 'DD/MM/YYYY',
'timeFormat' => 'HH:mm',
'weekStart' => 1,
'logger' => [
'path' => 'data/logs/espo.log',
'level' => 'DEBUG',
'rotation' => false
],
'outboundEmailIsShared' => true,
'outboundEmailFromName' => 'EspoCRM',
'outboundEmailFromAddress' => '[email protected]',
'smtpServer' => 'smtp4dev',
'smtpPort' => 25,
'smtpAuth' => false,
'smtpSecurity' => '',
'smtpUsername' => '',
'smtpPassword' => '',
];