| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- #域名设置
- define("RPC_SERVER","https://rpc.wikipali.org");
- define("ASSETS_SERVER","https://assets-hk.wikipali.org");
- define("HELP_SERVER","https://help-hk.wikipali.org");
- define("GRAMMAR_SERVER","https://grammar-hk.wikipali.org");
- define("DOCUMENTS_SERVER","https://help.wikipali.org");
- define('APP_KEY','base64:QHiqLcUthgo1V7Hj4UyoFxpCr1UmKJQu4cUr55z5zGc=');
- define('APP_ENV','local');
- /*
- 电子邮件设置
- PHPMailer
- */
- define("Email", [
- "Host"=>"smtp.gmail.com",//Set the SMTP server to send through
- "SMTPAuth"=>true,//Enable SMTP authentication
- "Username"=>'your@gmail.com',//SMTP username
- "Password"=>'your_password',//SMTP password
- "Port"=>465,//TCP port to connect to 465; use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS`
- "From"=>"your@gmail.com",
- "Sender"=>"sender"
- ]);
- /*
- 数据库设置
- */
- define("Database",[
- "type"=>"pgsql",
- "server"=>"localhost",
- "port"=>5432,
- "name"=>"mint",
- "sslmode" => "disable",
- "user" => "postgres",
- "password" => "123456"
- ]);
- # 雪花id
- define("SnowFlake",[
- "DatacenterId"=>1,
- "WorkerId"=>1
- ]);
- /*
- Redis 设置,
- */
- define("Redis",[
- "host" => "127.0.0.1",
- "port" => 6379,
- "password" => "",
- "prefix="=>"localhost://"
- ]);
- #目录设置,不能更改
- require_once __DIR__."/config.dir.php";
- /*
- 数据表
- */
- #表设置,此行不能更改
- require_once __DIR__."/config.table.php";
- ?>
|