forked from FOSSBilling/FOSSBilling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
77 lines (77 loc) · 1.6 KB
/
config.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
72
73
74
75
76
77
<?php
return array (
'security' =>
array (
'mode' => 'strict',
'force_https' => true,
'session_lifespan' => 7200,
'perform_session_fingerprinting' => true,
'debug_fingerprint' => false,
),
'debug_and_monitoring' =>
array (
'debug' => false,
'log_stacktrace' => true,
'stacktrace_length' => 25,
'report_errors' => false,
),
'info' =>
array (
'salt' => '45f1d7f2b105cd0991d366d7cc9543ff',
'instance_id' => '0d2e8b43-3653-460b-8d25-d761b217805a',
),
'url' => 'https://namingo.slonic.net/',
'admin_area_prefix' => '/admin',
'update_branch' => 'release',
'maintenance_mode' =>
array (
'enabled' => false,
'allowed_urls' =>
array (
),
'allowed_ips' =>
array (
),
),
'disable_auto_cron' => false,
'i18n' =>
array (
'locale' => 'en_US',
'timezone' => 'UTC',
'date_format' => 'medium',
'time_format' => 'short',
'datetime_pattern' => '',
),
'path_data' => '/var/www/data',
'db' =>
array (
'type' => 'mysql',
'host' => 'localhost',
'port' => '3306',
'name' => 'registrar',
'user' => 'uporabnik',
'password' => 'hugOOIWH232kjdwe',
),
'twig' =>
array (
'debug' => false,
'auto_reload' => true,
'cache' => '/var/www/data/cache',
),
'api' =>
array (
'require_referrer_header' => false,
'allowed_ips' =>
array (
),
'rate_span' => 3600,
'rate_limit' => 1000,
'throttle_delay' => 2,
'rate_span_login' => 60,
'rate_limit_login' => 20,
'CSRFPrevention' => true,
'rate_limit_whitelist' =>
array (
),
),
);