通过在 frps 的配置文件中配置subdomain_host,就可以启用该特性。之后在 frpc 的 http、https 类型的代理中可以不配置custom_domains,而是配置一个subdomain参数。 只需要将*.{subdomain_host}解析到 frps 所在服务器。之后用户可以通过subdomain自行指定自己的 web 服务所需要使用的二级域名,通过{subdomain}.{subdo...
proxy_pass http://$host:8080; expires 30d; } location ~ .*\.(js|css)?$ { expires 1d; } } # 端口8079映射到80端口 server { listen 80; server_name blog-admin.mmmm.com; location ~^/ { resolver 8.8.8.8; proxy_pass http://$host:8079; proxy_redirect off; client_max_body_size 10m...
frpc: subdomain = file frps: subdomain_host = abc.com 如果在服务端不打开这个配置: frpc: custom_domains = file.abc.com frps: #subdomain_host = xxx 就把这个配置给注释掉 创建stack version: '2' services: frps: image: snowdreamtech/frps container_name: frps restart: always network_mode: ...
之后在 frpc 的 http、https 类型的代理中可以不配置 custom_domains,而是配置一个 subdomain 参数。 只需要将 *.{subdomain_host} 解析到 frps 所在服务器。之后用户可以通过 subdomain 自行指定自己的 web 服务所需要使用的二级域名,通过 {subdomain}.{subdomain_host} 来访问自己的 web 服务。 每个内网穿透...
subdomain_host = frps.com 通过在 frps 的配置文件中配置 subdomain_host,就可以启用该特性。之后在 frpc 的 http、https 类型的代理中可以不配置 custom_domains,而是配置一个 subdomain 参数。 只需要将 *.{subdomain_host} 解析到 frps 所在服务器。之后用户可以通过 subdomain 自行指定自己的 web 服务所需...
域名:a.test.com 和 .a.test.com,都已解析域名,且a.test.com通过lnmp建立站点,.a.test.com通过lngx创建站点,且均已创建ssl证书。 其中a.test.com作为frps的subdomain_host。 客户端frpc的各个站点在使用http方式可以正常访问。 客户端frpc应用均采用子域名形式。 frps的vhost_http_port = 20000 情况描述: ...
如果frps.ini 没有配置 subdomain_host泛域名,那么 frpc.ini 中域名参数需使用 custom_domains = xx.xxx.com 需填写完整的域名. nginx配置 proxy_passhttp://127.0.0.1:1234; 中的 HTTP ,请勿写成 HTTPS . proxy_passhttp://127.0.0.1:1234; 中 1234 端口为 frps 的 HTTP 端口. ...
# subDomainHost = “*.proxy.frps.com” # subdomain为test时,路由使用的host为test.proxy.frps.com # HTTP 请求的自定义 404 页面 # custom404Page = “/path/to/404.html” # 指定udp数据包大小,单位为字节。 如果未设置,则默认值为 1500。
frps subdomain_host: 104.28.211.190 Please input frps max_pool_count [1-200] (Default : 50): frps max_pool_count: 50 Please select log_level 1: info (default) 2: warn 3: error 4: debug --- Enter your choice (1, 2, 3,
type = http # custom_domains是通过frp服务器端访问客户端的域名,必须输入完整的域名, # 并且不能是subdomain_host的子域名,否则frp服务不能启动,并且相应的域名需要解析到frp服务器端的公网IP并等待解析生效后,才可以使用。 custom_domains = flechazo.mba 运行 首先要先把配置中的端口都开放出去 保存退出后 ....