自定义http配置
自定义http配置
直接使用http.ListenAndServe()
func main() {
router := gin.Default()
http.ListenAndServe(":8080", router)
}
或者是
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()
}
Last updated
Was this helpful?