frp 让服务器远程调用本地的服务(比如你的java 8080项目)
1、服务器上安装frp
2、本地安装frp
服务器上 frps.toml 配置信息:
bindPort = 30000auth.token = "密码" # 客户端连接密码vhostHTTPPort = 8082
本地 frpc.toml
serverAddr = "服务器ip"
serverPort =30000
auth.token = "服务器上设置的密码"[[proxies]]
name = "web"
type = "http"
localPort = 8082
customDomains = ["你在服务器上用的域名1"][[proxies]]
name = "web-2"
type = "http"
localPort = 8080
customDomains = ["你在服务器上用的域名2"]
启动客户端
sudo ./frpc -c frpc.ini
启动服务端
# 1. 进入 FRP 目录
cd ~/frp_0.52.3_linux_amd64# 2. 赋予执行权限
chmod +x frps# 3. 启动服务端(前台运行,调试用)
./frps -c frps.toml# 或后台运行(推荐生产环境)
nohup ./frps -c frps.toml > frps.log 2>&1 &
最终你在服务器配置的域名就能访问你本地电脑运行的服务了
感谢承英肖总!!!https://github.com/fatedier/frp
https://gofrp.org/zh-cn/