#与frps中的subdomain_host连接起来就是 test.frp.xxx.com subdomain = test #自定义域名前缀 访问域名:test.frp.xxx.com:vhost_http_port 注:如果 frps 配置了subdomain_host,则custom_domains中不能是属于subdomain_host的子域名或者泛域名。 配置Nginx 还是老样子,每次都加端口访问太麻烦了,因此使用 Nginx ...
http_user = admin http_pwd = admin # if domain for frps is frps.com, then you can access [web01] proxy by URL http://test.frps.com #如果你的frps域名是yourdomain.com,那么你可以通过web01.yourdomain.com 来访问web01这个穿透服务。 subdomain = web01 #自己定义域名 custom_domains = your...
通过在 frps 的配置文件中配置subdomain_host,就可以启用该特性。之后在 frpc 的 http、https 类型的代理中可以不配置custom_domains,而是配置一个subdomain参数。 只需要将*.{subdomain_host}解析到 frps 所在服务器。之后用户可以通过subdomain自行指定自己的 web 服务所需要使用的二级域名,通过{subdomain}.{subdo...
subdomain = test custom_domains = frp..com custom_domains = frp..com 就是下方绑定的域名,在这里要注意解析泛域名,如:*.frp..com。绑定后就可以通过域名:test.frp..com:8080访问了。注:这里的8080端口就是在服务端(frps)所填写的vhost_http_port,而域名前缀test就是客户端(frpc)的subdomain = test ...
[https] subdomain = debug local_ip = 127.0.0.1 local_port = 443 这样运行以后,服务端配置了custom_domains和{subdomain}.{subdomain_host} 都可以访问到, 客户端没有配置subdomain,就使用服务器配置的subdomain,都没配置就由服务器随机生成一个,返回给客户端,这样比较省事 可以参考一下https://natapp.cn...
subdomain_host = xxxx.com 客户端我配置了 subdomain= aaa 这样aaa.xxxx.com可以正常访问 但我还有另外一个域名,所以我就在客户端又加了 custom_domains = aaa.yyyy.com 这时候启动客户端,就报错了 报配置冲突 config conflict 我的目的就是两个网址都能同时指向一个服务,我应该如何正确配置?
则在对应穿透服务,custom_domains参数中填abc123.demo.com 分配对应穿透应用服务唯一的子域名,用于访问 subdomain = abc123 假如frps服务端已经配置了subdomain_host参数域名,并且已经泛(*)解析到frps服务端的服务器(VPS)IP,则可以使用此参数,否则不能用。
subdomain = web01 # 如果 FRPS 的subdomain_host为 frps.com,则可以通过 http://web01.frps.com 代理访问 [Web01]。 custom_domains = web01.yourdomain.com locations = /,/pic # 位置仅对http类型有效。 host_header_rewrite = example.com ...
# subdomain 与 custom_domains 中至少有一个必须要设置 custom_domains=web02.yourdomain.com # 匹配路径,可以设置多个,用逗号分隔,比如你设置 locations 为以下这个, # 那么所有 http://xxx/abc 和 http://xxx/def 都会被转发到 http://xxx/# 如果不需要这个功能可以不写这项,就直接该怎么访问就怎么访问...
如果不需要,可以注释掉 subdomain_host = 访问的域名。如果需要的话修改成自己的 #服务器用以显示连接状态的站点端口,以下配置中可以通过访问IP:7500登录查看frp服务端状态等信息 dashboard_addr = 0.0.0.0 dashboard_port = 7500 dashboard_user = 自定义的用户名 dashboard_pwd = 自定义的密码 #日志路径 ...