local_port = 8080 #与frps中的subdomain_host连接起来就是 test.frp.xxx.com subdomain = test #自定义域名前缀 访问域名:test.frp.xxx.com:vhost_http_port 注:如果 frps 配置了subdomain_host,则custom_domains中不能是属于subdomain_host的子域名或者泛域名。 配置Nginx 还是老样子,每次都加端口访问太麻烦...
通过在 frps 的配置文件中配置subdomain_host,就可以启用该特性。之后在 frpc 的 http、https 类型的代理中可以不配置custom_domains,而是配置一个subdomain参数。 只需要将*.{subdomain_host}解析到 frps 所在服务器。之后用户可以通过subdomain自行指定自己的 web 服务所需要使用的二级域名,通过{subdomain}.{subdo...
# if subdomain_host is not empty, you can set subdomain when type is http or https in frpc's configure file # when subdomain is test, the host used by routing is test.frps.com subdomain_host = frps.com # if tcp stream multiplexing is used, default is true # tcp_mux = true # ...
# 如果 subdomain_host 不为空, 可以在客户端配置文件中设置子域名类型为 http 还是 https # 当子域名为 test 时, 用于路由的主机为http://test.frps.com subdomain_host =http://frps.com # 是否使用 tcp 流多路复用,默认值为 true tcp_mux = true #对 http 请求设置自定义 404 页面 # custom_404_...
dashboard_user= userdashboard_pwd= password#客户端连接令牌token= access_token# 路由地址subdomain_host= frp.x.com###下列配置默认即可,无需改动###穿透监听端口与地址(0.0.0.0表示允许任何地址)bind_addr=0.0.0.0bind_port=7000# udp协议监听端口bind_udp_port=7001#udp协议支持kcp模式。kcp的运行端口,不...
subdomain_host = frp.x.com ###下列配置默认即可,无需改动### #穿透监听端口与地址(0.0.0.0表示允许任何地址) bind_addr = 0.0.0.0 bind_port = 7000 # udp协议监听端口 bind_udp_port = 7001 #udp协议支持kcp模式。kcp的运行端口,不设置表示禁用。可以与'bind_port'端口一致 kcp_bind_port = 7000 ...
subdomain_host=访问的域名。如果需要的话修改成自己的 #服务器用以显示连接状态的站点端口,以下配置中可以通过访问IP:7500登录查看frp服务端状态等信息 dashboard_addr=0.0.0.0dashboard_port=7500dashboard_user=自定义的用户名 dashboard_pwd=自定义的密码 ...
subdomain_host = 访问的域名。如果需要的话修改成自己的 #服务器用以显示连接状态的站点端口,以下配置中可以通过访问IP:7500登录查看frp服务端状态等信息 dashboard_addr = 0.0.0.0 dashboard_port = 7500 dashboard_user = 自定义的用户名 dashboard_pwd = 自定义的密码 ...
1.2、修改frps.ini # 删除所有的 frpc的内容 rm frpc* vim frps.ini frps.ini 文件的内容 [common] bind_port = 7000 #connect port between server and client token = XXX # token for safe vhost_http_port = 8080 subdomain_host = frps.com ...
如果frp反代网站全程只需要一个域名,不同的服务对应不同的二级域名,frps加一个"subdomain_host"参数,参数值填没有前缀的域名,frpc加一个"subdomain"参数,参数值只填域名前缀。,比如我们要访问frp.example.com和tomcat.example.com,两个域名都解析到公网服务器上 ...