S2OJ/web/app/.default-config.php
2022-03-20 12:55:01 +08:00

64 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' => '冀ICP备2020028886号'
],
'database' => [
'database' => 'app_uoj233',
'username' => 'root',
'password' => '_database_password_',
'host' => '127.0.0.1',
'port' => '3306',
],
'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' => [
'web-analytics' => false,
'blog-domain-mode' => 3
],
'tools' => [
// 请仅在https下启用以下功能.
// 非https下, chrome无法进行复制.
'map-copy-enabled' => false,
]
];