| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- return [
- 'profile' => [
- 'oj-name' => 'Universal Online Judge',
- 'oj-name-short' => 'UOJ',
- 'administrator' => 'root',
- 'admin-email' => 'admin@local_uoj.ac',
- 'QQ-group' => '',
- 'ICP-license' => ''
- ],
- 'database' => [
- 'database' => 'app_uoj233',
- 'username' => 'root',
- 'password' => 'root',
- 'host' => 'uoj-db'
- ],
- 'web' => [
- 'domain' => null,
- 'main' => [
- 'protocol' => 'http',
- 'host' => '_httpHost_',
- 'port' => 80
- ],
- 'blog' => [
- 'protocol' => 'http',
- 'host' => '_httpHost_',
- 'port' => 80
- ]
- ],
- 'security' => [
- 'user' => [
- 'client_salt' => 'salt0'
- ],
- 'cookie' => [
- 'checksum_salt' => ['salt1', 'salt2', 'salt3']
- ],
- ],
- 'mail' => [
- 'noreply' => [
- 'username' => 'noreply@local_uoj.ac',
- 'password' => '_mail_noreply_password_',
- 'host' => 'smtp.local_uoj.ac',
- 'secure' => 'tls',
- 'port' => 587
- ]
- ],
- 'judger' => [
- 'socket' => [
- 'port' => '233',
- 'password' => '_judger_socket_password_'
- ]
- ],
- 'switch' => [
- // 请在 page-header.php 中修改统计代码后再启用
- 'web-analytics' => false,
- 'blog-domain-mode' => 3
- ],
- 'tools' => [
- // 请仅在https下启用以下功能.
- // 非https下, chrome无法进行复制.
- 'map-copy-enabled' => false,
- ]
- ];
|