- 添加 fileTransferPort 字段到 RemoteDevice 类型 - 新增 frp 穿透配置: 3003 -> 8083 - 文件传输功能改用专用端口,避免与远程桌面端口共用 - 配置对话框新增文件传输端口设置
38 lines
574 B
TOML
38 lines
574 B
TOML
serverAddr = "146.56.248.142"
|
|
serverPort = 7000
|
|
auth.token = "wzw20040525"
|
|
|
|
log.to = "C:\\frp\\frpc.log"
|
|
log.level = "info"
|
|
log.maxDays = 7
|
|
|
|
[[proxies]]
|
|
name = "desktop-remote"
|
|
type = "tcp"
|
|
localIP = "127.0.0.1"
|
|
localPort = 3000
|
|
remotePort = 8080
|
|
|
|
[[proxies]]
|
|
name = "gitea-remote"
|
|
type = "tcp"
|
|
localIP = "127.0.0.1"
|
|
localPort = 3001
|
|
remotePort = 8081
|
|
|
|
[[proxies]]
|
|
name = "opencode-remote"
|
|
type = "tcp"
|
|
localIP = "127.0.0.1"
|
|
localPort = 3002
|
|
remotePort = 8082
|
|
|
|
[[proxies]]
|
|
name = "filetransfer-remote"
|
|
type = "tcp"
|
|
localIP = "127.0.0.1"
|
|
localPort = 3003
|
|
remotePort = 8083
|
|
|
|
|