在公網(wǎng)服務(wù)器上
git clone https://github.com/wqyjh/frp-deploy
cd frp-deploy
# 編輯并修改 frps/frps.ini,配置 token 為一個(gè)復(fù)雜的字符串
token = <complex string>
./install.sh frps
在本地
git clone https://github.com/wqyjh/frp-deploy
cd frp-deploy
編輯并修改 frpc/frpc.ini,配置以下字段
[common]
server_addr = xxx.xxx.xxx.xxx # 公網(wǎng)服務(wù)器地址
server_port = 7000
token = tokenstring # 配置 token 和服務(wù)器上一樣的字符串
[test]
type = tcp
local_ip = 127.0.0.1
local_port = 8000
remote_port = 80
安裝并運(yùn)行
./install.sh frpc
通過內(nèi)網(wǎng)穿透訪問本地服務(wù)
假設(shè)公網(wǎng)域名為 weixindev.example.com
固耘,訪問 http://weixindev.example.com
相當(dāng)于訪問 http://127.0.0.1:8000
梗醇。