-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
.config.php
executable file
·46 lines (46 loc) · 982 Bytes
/
.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
<?php
return [
'profile' => [
'oj-name' => '石家庄二中信息学在线评测系统',
'oj-name-short' => 'S2OJ',
'administrator' => 'root',
'admin-email' => '[email protected]',
'QQ-group' => '',
'ICP-license' => '冀ICP备2020028886号',
'police-license' => '冀公网安备13010502002309号',
],
'database' => [
'database' => 'app_uoj233',
'username' => 'root',
'password' => 'root',
'host' => 'uoj-db',
'port' => '3306',
],
'security' => [
'user' => [
'client_salt' => 'salt_0',
],
'cookie' => [
'checksum_salt' => ['salt_1', 'salt_2', 'salt_3'],
],
],
'mail' => [
'noreply' => [
'username' => 'noreply@local_uoj.ac',
'password' => '_mail_noreply_password_',
'host' => 'smtp.local_uoj.ac',
'secure' => 'tls',
'port' => 587,
]
],
'judger' => [
'socket' => [
'port' => '2333',
'password' => '_judger_socket_password_'
],
],
'switch' => [
'blog-domain-mode' => 3,
'open-register' => false,
],
];