32 lines
606 B
Cheetah
32 lines
606 B
Cheetah
serverAddr = "{{.ServerAddr}}"
|
|
serverPort = {{.ServerPort}}
|
|
|
|
[auth]
|
|
token = "{{.Token}}"
|
|
|
|
[log]
|
|
to = "./frpc.log"
|
|
level = "{{.LogLevel}}"
|
|
maxDays = {{.LogMaxDays}}
|
|
|
|
[transport]
|
|
tcpMux = {{.TcpMux}}
|
|
tcpMuxKeepaliveInterval = {{.TcpMuxKeepalive}}
|
|
heartbeatInterval = {{.HeartbeatInterval}}
|
|
heartbeatTimeout = {{.HeartbeatTimeout}}
|
|
poolCount = {{.PoolCount}}
|
|
{{if .WireProtocolLine}}
|
|
{{.WireProtocolLine}}
|
|
{{end}}
|
|
|
|
[webServer]
|
|
addr = "127.0.0.1:7400"
|
|
|
|
{{range .Proxies}}
|
|
[[proxies]]
|
|
name = "{{.Name}}"
|
|
type = "{{.Type}}"
|
|
localIP = "{{.LocalIP}}"
|
|
localPort = {{.LocalPort}}
|
|
remotePort = {{.RemotePort}}
|
|
{{end}} |