我在公网上搭建了一个 frps ,假设 IP 地址是 118.118.118.118 ,其中vhostHTTPPort
是 8080 。
然后我在 frpc 配置了一个 Web 服务:
[[proxies]]
name = "web"
type = "http"
localIP = "127.0.0.1"
localPort = 8000
customDomains = ["118.118.118.118"]
这时候能够通过118.118.118.118:8080
直接访问。我想在本地再搭建另外一个 Web 服务,使用不同的本地端口。那么应该如何配置 frp 呢?
1
565656 347 天前
chatgpt 都知道
|
2
Yuhyeong 347 天前
百度都知道
|
3
totoro625 347 天前
不绑定域名、不共用端口的情况下,穿透 type 直接用 tcp 即可,多复制几个[[proxies]]字段,就可以多穿透几个 web 界面了
|
4
totoro625 347 天前
如果第二个 web 也想走 vhostHTTPPort 是 8080 ,就必须绑定域名了
|
5
ihainan 347 天前
type 选择 tcp
|
6
fengci 347 天前
反向代理。nginx 或者 这类的软件都可以
|