mirror of
https://github.com/fatedier/frp.git
synced 2025-07-27 15:45:39 +00:00
Fix the problem of long connection for more than 30 seconds and disconnection of the server
This commit is contained in:
@@ -60,6 +60,7 @@ var (
|
||||
allowPorts string
|
||||
maxPoolCount int64
|
||||
maxPortsPerClient int64
|
||||
vhostHttpTimeout int64
|
||||
)
|
||||
|
||||
func init() {
|
||||
@@ -85,6 +86,7 @@ func init() {
|
||||
rootCmd.PersistentFlags().Int64VarP(&authTimeout, "auth_timeout", "", 900, "auth timeout")
|
||||
rootCmd.PersistentFlags().StringVarP(&subDomainHost, "subdomain_host", "", "", "subdomain host")
|
||||
rootCmd.PersistentFlags().Int64VarP(&maxPortsPerClient, "max_ports_per_client", "", 0, "max ports per client")
|
||||
rootCmd.PersistentFlags().Int64VarP(&vhostHttpTimeout, "vhost_http_timeout", "", 30, "vhost http timeout")
|
||||
}
|
||||
|
||||
var rootCmd = &cobra.Command{
|
||||
@@ -177,6 +179,7 @@ func parseServerCommonCfgFromCmd() (err error) {
|
||||
g.GlbServerCfg.AuthTimeout = authTimeout
|
||||
g.GlbServerCfg.SubDomainHost = subDomainHost
|
||||
g.GlbServerCfg.MaxPortsPerClient = maxPortsPerClient
|
||||
g.GlbServerCfg.VhostHttpTimeout = vhostHttpTimeout
|
||||
return
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user