This commit is contained in:
Imran Remtulla
2025-10-25 05:53:52 -04:00
parent 603bdd12b5
commit 0226c4406c
4 changed files with 52 additions and 3 deletions

23
frpc.toml Normal file
View File

@@ -0,0 +1,23 @@
serverAddr = "137.220.35.151"
serverPort = 7000
auth.additionalScopes = ["HeartBeats", "NewWorkConns"]
auth.method = "token"
auth.token = "mysupersecrettoken"
[[proxies]]
name = "http"
type = "tcp"
localIP = "127.0.0.1"
localPort = 80
remotePort = 80
transport.useEncryption = true
transport.proxyProtocolVersion = "v2"
[[proxies]]
name = "https"
type = "tcp"
localIP = "127.0.0.1"
localPort = 443
remotePort = 443
transport.useEncryption = true
transport.proxyProtocolVersion = "v2"