-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
Description
frps.ini:
[common]
bind_port = 7000
vhost_http_port = 80
vhost_https_port = 443
dashboard_port = 7500
log_file = ./frps.log
log_level = info
log_max_days = 3
subdomain_host = *****.com
privilege_mode = true
privilege_token = 12345678
max_pool_count = 100
frpc.ini
[common]
server_addr = *********
server_port = 7000
log_file = D:/frpc.log
log_level = info
log_max_days = 3
privilege_token = 12345678
[privilege_web1]
privilege_mode = true
type = http
local_port = 80
use_gzip = true
subdomain = www
pool_count = 5
[privilege_web2]
privilege_mode = true
type = https
local_port = 443
use_gzip = true
subdomain = blog
pool_count = 5
frpc是win版的,这样直接秒退,连报错是什么都看不到,如果把[privilege_web2]删掉,就可以正常连接,如果把[privilege_web2]的https改成http,也可以正常连接。
难道是privilege_mode 不支持https吗??
求解