增加访问ip打印等功能

This commit is contained in:
2020-02-20 15:06:39 +08:00
parent 0f29b3304e
commit 6eca18b374
4 changed files with 43 additions and 13 deletions
+4 -4
View File
@@ -6,10 +6,9 @@ var App = map[string]*Application{} //整个项目
//var Db = HoTimeDB{} //数据库实例
var Config = Map{
"debug": 1, //debug 0关闭1开启
"logLevel": LOG_NIL,
"dbHost": "127.0.0.1",
//"dbHost":"localhost",
"debug": 1, //debug 0关闭1开启
"logLevel": LOG_NIL,
"dbHost": "127.0.0.1",
"dbName": "test",
"dbUser": "root",
"dbPwd": "root",
@@ -62,6 +61,7 @@ var ConfigNote = Map{
"defFile": "默认访问文件,默认访问index.html或者index.htm文件",
"crossDomain": "跨域设置,空字符串为不开启,*为开启所有网站允许跨域,http://www.baidu.com为指定域允许跨域", //是否开启跨域
"modeRouterStrict": "路由严格模式false,为大小写忽略必须匹配,true必须大小写匹配", //路由严格模式/a/b/c
"connectLogShow": "web访问链接、访问ip、访问时间打印,0为关闭其他数字开启此功能",
"sessionName": "设置session的cookie名默认HOTIME",
"port": "web服务开启Http端口,0为不启用http服务",
"tlsPort": "web服务https端口,0为不启用https服务",