mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-08 12:58:42 +00:00
Baoshuo
86b9b47dd8
Some checks failed
Build & Push Docker Images / Build Image (., web/Dockerfile, web) (push) Failing after 23s
Build & Push Docker Images / Build Image (db, db/Dockerfile, db) (push) Failing after 11s
Build & Push Docker Images / Build Image (judger, judger/Dockerfile, judger) (push) Failing after 9s
Build & Push Docker Images / Build Image (remote_judger, remote_judger/Dockerfile, remote-judger) (push) Failing after 13s
47 lines
982 B
PHP
Executable File
47 lines
982 B
PHP
Executable File
<?php
|
|
return [
|
|
'profile' => [
|
|
'oj-name' => '石家庄二中信息学在线评测系统',
|
|
'oj-name-short' => 'S2OJ',
|
|
'administrator' => 'root',
|
|
'admin-email' => 'admin@sjzezoj.com',
|
|
'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,
|
|
],
|
|
];
|