服务端
配置
# frps.ini
[common]
bind_port = 7000
vhost_http_port = 10007
启动命令
./frps -c ./frps.ini
启动脚本
./frps -c ./frps.ini > logs.log 2>&1 &
客户端
配置
[common]
# frps 所在的服务器的 IP
server_addr = xxx.xxx.xxx.xxx
# frps 所在的服务器绑定的端口
server_port = 7000
[web]
type = http
# 本地服务端口
local_port = 9000
# 自定义域名
custom_domains = frp.nebulous.cn
启动命令
./frpc -c ./frpc.ini
启动脚本
./frpc -c ./frpc.ini > logs.log 2>&1 &