1 Star 0 Fork 28

hey_woods/ha-api

forked from openEuler/ha-api 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.go 750 Bytes
一键复制 编辑 原始数据 按行查看 历史
yangzhao_kl 提交于 2021-02-26 09:26 . !152 release v1.0.0
package main
import (
"net/http"
_ "openkylin.com/ha-api/routers"
"github.com/beego/beego/v2/core/logs"
"github.com/beego/beego/v2/server/web"
)
func pageNotFoundHandler(rw http.ResponseWriter, r *http.Request) {
rw.Write([]byte("page not found"))
}
func main() {
logs.SetLogger("console")
logs.SetLevel(logs.LevelNotice)
web.BConfig.CopyRequestBody = true
// web.BConfig.Listen.HTTPAddr = "172.30.30.94"
web.SetStaticPath("/static", "views/static")
// web.SetStaticPath("/4.12.13", "views/static/4.12.13")
// web.SetStaticPath("/static", "views/static/static")
web.BConfig.WebConfig.Session.SessionOn = true
web.BConfig.WebConfig.Session.SessionGCMaxLifetime = 300
web.ErrorHandler("404", pageNotFoundHandler)
web.Run()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hey-woods/ha-api.git
git@gitee.com:hey-woods/ha-api.git
hey-woods
ha-api
ha-api
master

搜索帮助