init the project

This commit is contained in:
Zic
2017-12-23 18:02:11 +08:00
commit 81e14d12ea
54 changed files with 6829 additions and 0 deletions

View File

@ -0,0 +1,12 @@
server{
listen 80;
server_name tank.zicpo.cn;
location / {
proxy_pass http://127.0.0.1:9090;
proxy_set_header host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_pass_request_headers on;
client_max_body_size 2048m;
}
}

12
build/conf/tank.json Normal file
View File

@ -0,0 +1,12 @@
{
"ServerPort": 9090,
"LogToConsole": true,
"MysqlPort": 3306,
"MysqlHost": "127.0.0.1",
"MysqlSchema": "tank",
"MysqlUserName": "tank",
"MysqlPassword": "tank123",
"AdminUsername": "admin",
"AdminEmail": "admin@tank.eyeblue.cn",
"AdminPassword": "123456"
}