#与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...
custom_domains = blog-admin.xxx.com # 配置8080端口 [tcp_blog] type = tcp local_ip = 127.0.0.1 local_port = 8080 remote_port = 8080 custom_domains = blog.mmmm.com # 配置8082端口 [tcp_app3] type = tcp local_ip = 127.0.0.1 local_port = 8082 remote_port = 8082 custom_domains = ...
#如果你的frps域名是yourdomain.com,那么你可以通过web01.yourdomain.com 来访问web01这个穿透服务。 subdomain = web01 #自己定义域名 custom_domains = yourdomain.com # locations is only available for http type locations = /,/pic # http重定向地址 ...
[https] subdomain = debug local_ip = 127.0.0.1 local_port = 443 这样运行以后,服务端配置了custom_domains和{subdomain}.{subdomain_host} 都可以访问到, 客户端没有配置subdomain,就使用服务器配置的subdomain,都没配置就由服务器随机生成一个,返回给客户端,这样比较省事 可以参考一下https://natapp.cn...
custom_domains = frp..com 就是下方绑定的域名,在这里要注意解析泛域名,如:*.frp..com。绑定后就可以通过域名:test.frp..com:8080访问了。注:这里的8080端口就是在服务端(frps)所填写的vhost_http_port,而域名前缀test就是客户端(frpc)的subdomain = test ...
Configures you used: 服务器端我配置了: subdomain_host = xxxx.com 客户端我配置了 subdomain= aaa 这样aaa.xxxx.com可以正常访问 但我还有另外一个域名,所以我就在客户端又加了 custom_domains = aaa.yyyy.com 这时候启动客户端,就报错了 报配置冲突 config conflict ...
# 如果 FRPS 的subdomain_host为 frps.com,则可以通过 http://web01.frps.com 代理访问 [Web01]。 custom_domains = web01.yourdomain.com locations = /,/pic # 位置仅对http类型有效。 host_header_rewrite = example.com # 重写请求头中的host。
# subdomain 与 custom_domains 中至少有一个必须要设置 custom_domains=web02.yourdomain.com # 匹配路径,可以设置多个,用逗号分隔,比如你设置 locations 为以下这个, # 那么所有 http://xxx/abc 和 http://xxx/def 都会被转发到 http://xxx/# 如果不需要这个功能可以不写这项,就直接该怎么访问就怎么访问...