nginx+GO部署的一些问题

hellsam · · 2796 次点击
如果你是程序员,建议你先看看<span style="color:red">**计算机网络**</span>。 我去 github 上看到人家 REAMDE 里的例子写的清清楚楚: ```go srv := &http.Server{ Handler: router, Addr: "127.0.0.1:8000", // Good practice: enforce timeouts for servers you create! WriteTimeout: 15 * time.Second, ReadTimeout: 15 * time.Second, } ```
#5
更多评论
喝醉了发帖是吧?
#1
GO 程序监听地址改为本地回环地址: 127.0.0.1:8081,然后用 Nginx 进行反向代理。 这样别人是无法通过 8081 端口访问的!!
#2