mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2025-02-16 23:46:41 +00:00
Due to historical reasons, the code is in subfolder "1". With SVN removal, we place the code back and remove the annoying "1" folder.
58 lines
1.1 KiB
PHP
58 lines
1.1 KiB
PHP
<?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' => '_database_password_',
|
|
'host' => '127.0.0.1'
|
|
],
|
|
'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-use-subdomain' => false
|
|
]
|
|
];
|