S2OJ/web/app/.default-config.php
Baoshuo e0f3dbf57c
All checks were successful
continuous-integration/drone/push Build is passing
feat: 公安备案
2023-11-18 22:07:13 +08:00

61 lines
1.2 KiB
PHP

<?php
return [
'profile' => [
'oj-name' => '石家庄二中信息学在线评测系统',
'oj-name-short' => 'S2OJ',
'administrator' => 'root',
'admin-email' => 'admin@sjzezoj.com',
'QQ-group' => '',
'ICP-license' => '',
'police-license' => '',
's2oj-version' => 'dev'
],
'database' => [
'database' => 'app_uoj233',
'username' => 'root',
'password' => '_database_password_',
'host' => '127.0.0.1',
'port' => '3306',
],
'web' => [
'domain' => null,
'main' => [
'protocol' => 'http',
'host' => UOJContext::requestDomain(),
'port' => '80/443',
],
'blog' => [
'protocol' => 'http',
'host' => UOJContext::requestDomain(),
'port' => '80/443',
]
],
'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' => [
'blog-domain-mode' => 3,
'open-register' => false,
],
];