Gin 使用示例(八):自定义 HTTP 服务器配置
可以直接使用 http.ListenAndServe()
来配置监听地址和端口以及路由器:
func main() {
router := gin.Default()
http.ListenAndServe(":8080", router)
}
或者通过下面这种方式来自定义 HTTP 服务器:
func main() {
router := gin.Default()
s := &http.Server{
Addr: ":8080",
Handler: router,
ReadTimeout: 10 * time.Second,
WriteTimeout: 10 * time.Second,
MaxHeaderBytes: 1 << 20,
}
s.ListenAndServe()
}
1 Comment
FYI 1 << 20 = 1048576 Byes = 1024 KB = 1 MB