mirror of
https://github.com/Buriburizaem0n/nezha_domains.git
synced 2026-02-04 12:40:07 +00:00
优化 Websocket 连接
This commit is contained in:
@@ -35,6 +35,7 @@ func (cp *commonPage) home(c *gin.Context) {
|
||||
defer dao.ServerLock.RUnlock()
|
||||
c.HTML(http.StatusOK, "page/home", mygin.CommonEnvironment(c, gin.H{
|
||||
"Admin": admin,
|
||||
"Domain": dao.Conf.Site.Domain,
|
||||
"Servers": dao.ServerList,
|
||||
}))
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@ import (
|
||||
)
|
||||
|
||||
// ServeWeb ..
|
||||
func ServeWeb() {
|
||||
func ServeWeb(port uint) {
|
||||
gin.SetMode(gin.ReleaseMode)
|
||||
if dao.Conf.Debug {
|
||||
gin.SetMode(gin.DebugMode)
|
||||
@@ -43,7 +43,7 @@ func ServeWeb() {
|
||||
r.Static("/static", "resource/static")
|
||||
r.LoadHTMLGlob("resource/template/**/*")
|
||||
routers(r)
|
||||
r.Run()
|
||||
r.Run(fmt.Sprintf(":%d", port))
|
||||
}
|
||||
|
||||
func routers(r *gin.Engine) {
|
||||
|
||||
@@ -47,7 +47,7 @@ func initDB() {
|
||||
}
|
||||
|
||||
func main() {
|
||||
go controller.ServeWeb()
|
||||
go rpc.ServeRPC()
|
||||
go controller.ServeWeb(80)
|
||||
go rpc.ServeRPC(5555)
|
||||
select {}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package rpc
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net"
|
||||
|
||||
"google.golang.org/grpc"
|
||||
@@ -10,12 +11,12 @@ import (
|
||||
)
|
||||
|
||||
// ServeRPC ...
|
||||
func ServeRPC() {
|
||||
func ServeRPC(port uint) {
|
||||
server := grpc.NewServer()
|
||||
pb.RegisterNezhaServiceServer(server, &rpcService.NezhaHandler{
|
||||
Auth: &rpcService.AuthHandler{},
|
||||
})
|
||||
listen, err := net.Listen("tcp", ":5555")
|
||||
listen, err := net.Listen("tcp", fmt.Sprintf(":%d", port))
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user