mirror of
https://github.com/newnius/YAO-portal.git
synced 2025-06-06 07:11:54 +00:00
52 lines
1.6 KiB
PHP
Executable File
52 lines
1.6 KiB
PHP
Executable File
<?php
|
|
|
|
define('YAO_VERSION', '0.2.1');
|
|
|
|
/* Custom */
|
|
|
|
|
|
/* Mysql */
|
|
/* It is not recommended to use `root` in production environment */
|
|
define('DB_HOST', 'localhost');
|
|
define('DB_PORT', 3306);
|
|
define('DB_NAME', 'yao');
|
|
define('DB_USER', 'root');
|
|
define('DB_PASSWORD', '');
|
|
define('DB_SHOW_ERROR', false); // set to true to see detailed Mysql errors __only__ for debug purpose
|
|
|
|
/* Redis */
|
|
/* Make sure that your Redis only listens to Intranet */
|
|
define('REDIS_SCHEME', 'tcp');
|
|
define('REDIS_HOST', 'localhost');
|
|
define('REDIS_PORT', 6379);
|
|
define('REDIS_SHOW_ERROR', false); // set to true to see detailed Redis errors __only__ for debug purpose
|
|
|
|
/* Site */
|
|
define('BASE_URL', 'http://127.0.0.1'); // make absolute url for SEO and avoid hijack, no '/' at the end
|
|
define('WEB_ROOT', __DIR__);
|
|
define('FEEDBACK_EMAIL', 'support@newnius.com');
|
|
|
|
/* Auth */
|
|
define('AUTH_CODE_TIMEOUT', 300); // 5 min
|
|
define('AUTH_TOKEN_TIMEOUT', 604800); // 7 day
|
|
|
|
/* Session */
|
|
define('ENABLE_MULTIPLE_LOGIN', true);
|
|
define('BIND_SESSION_WITH_IP', false); // current session will be logged when ip changes
|
|
define('SESSION_TIME_OUT', 1800);// 30 minutes 30*60=1800
|
|
define('ENABLE_COOKIE', true);
|
|
|
|
/* Rate Limit */
|
|
define('ENABLE_RATE_LIMIT', false);
|
|
define('RATE_LIMIT_PREFIX', 'rl');
|
|
|
|
/* OAuth */
|
|
/* The default conf is only usable when this runs on localhost */
|
|
define('OAUTH_SITE', 'https://quickauth.newnius.com');
|
|
define('OAUTH_CLIENT_ID', 'XgaII6NxeE08LtKB');
|
|
define('OAUTH_CLIENT_SECRET', 'L9hdi4dQToM0GsDLtcYYQ3k4ZDEjuGVOtPS3nOVKlo6cxLcVjH9TqvmTBiHAgLp2');
|
|
|
|
|
|
header("content-type:text/html; charset=utf-8");
|
|
|
|
date_default_timezone_set('Asia/Shanghai'); |