A fast reverse proxy that allows you to expose a local server located behind a NAT or firewall to the Internet.
Frp is a fast reverse proxy that allows you to expose a local server located behind a NAT or firewall to the Internet. It currently supports TCP and UDP, as well as HTTP and HTTPS protocols, enabling requests to be forwarded to internal services via domain name.
After completing the deployment, please configure frps.toml
via Config Edit according to the documentation at https://github.com/fatedier/frp?tab=readme-ov-file#example-usage
. Also, configure the port in the Zeabur network tab.
Once configuration is complete, download the corresponding platform version of the compressed package from https://github.com/fatedier/frp/releases
, extract it, and configure frpc.toml
to link with the Frp Server.
bindPort = 7000
auth.method = "token"
auth.token = "your custom token"
webServer.addr = "0.0.0.0"
webServer.port = 7500
webServer.user = "admin"
webServer.password = "123456"
serverAddr = "your server ip or domain"
serverPort = your server bindport
auth.method = "token"
auth.token = "your server token"
webServer.addr = "0.0.0.0"
webServer.port = 7400
webServer.user = "admin"
webServer.password = "123456"
[[proxies]]
name = "25565"
type = "tcp"
localIP = "0.0.0.0"
localPort = 25565
remotePort = 25565
[[proxies]]
name = "3389"
type = "tcp"
localIP = "0.0.0.0"
localPort = 3389
remotePort = 3389