File tree Expand file tree Collapse file tree 4 files changed +50
-23
lines changed
Expand file tree Collapse file tree 4 files changed +50
-23
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ #
2+ # See: https://github.com/fatedier/frp/blob/dev/conf/frpc_full_example.toml
3+ #
4+
5+ serverAddr = " 1.2.3.4"
6+ serverPort = 7000
7+
8+ transport.protocol = " kcp"
9+
10+ auth.method = " token"
11+ auth.token = " 12345678"
12+
13+ webServer.addr = " 127.0.0.1"
14+ webServer.port = 7400
15+ webServer.user = " admin"
16+ webServer.password = " admin"
17+
18+ [[proxies ]]
19+
20+ name = " ssh"
21+ type = " tcp"
22+ localIP = " 127.0.0.1"
23+ localPort = 22
24+ remotePort = 2222
25+ transport.useEncryption = true
26+ transport.useCompression = true
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ #
2+ # See: https://github.com/fatedier/frp/blob/dev/conf/frps_full_example.toml
3+ #
4+
5+ bindAddr = " 0.0.0.0"
6+ bindPort = 7000
7+ kcpBindPort = 7000
8+
9+ transport.maxPoolCount = 10
10+
11+ webServer.addr = " 127.0.0.1"
12+ webServer.port = 7500
13+ webServer.user = " admin"
14+ webServer.password = " admin"
15+
16+ auth.method = " token"
17+ auth.token = " 12345678"
18+
19+ enablePrometheus = true
20+
21+ allowPorts = [
22+ { single = 2222 },
23+ { start = 20000 , end = 20100 }
24+ ]
You can’t perform that action at this time.
0 commit comments