29 lines
813 B
TOML
29 lines
813 B
TOML
# 服务端地址 https://github.com/fatedier/frp/blob/dev/conf/frpc_full_example.toml
|
|
serverAddr = "124.71.159.195"
|
|
# 服务端配置的bindPort
|
|
serverPort = 7000
|
|
# token =
|
|
|
|
[[proxies]]
|
|
# 代理应用名称,根据自己需要进行配置
|
|
name = "smile-dev-tech-01"
|
|
# 代理类型 有tcp\udp\stcp\p2p
|
|
type = "tcp"
|
|
# 客户端代理应用IP
|
|
localIP = "host.docker.internal"
|
|
# 客户端代理应用端口
|
|
localPort = 8234
|
|
# 服务端反向代理端口;提供给外部访问
|
|
remotePort = 8234
|
|
|
|
[[proxies]]
|
|
# 代理应用名称,根据自己需要进行配置
|
|
name = "smile-dev-tech-02"
|
|
# 代理类型 有tcp\udp\stcp\p2p
|
|
type = "tcp"
|
|
# 客户端代理应用IP
|
|
localIP = "host.docker.internal"
|
|
# 客户端代理应用端口
|
|
localPort = 8092
|
|
# 服务端反向代理端口;提供给外部访问
|
|
remotePort = 8092 |