我是这样设置的:
frps服务器端和frpc客户端都安装的1panle。
frps服务端设置:
vhost_http_port = 1180
vhost_https_port = 1443
在frps服务端反代:
location ^~ / {
proxy_pass http://127.0.0.1:1180;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_http_version 1.1;
add_header X-Cache $upstream_cache_status;
}
安装了ssl,可以正常用https访问。
frpc客户端这样设置的:
[网站名称]
type=http
custom_domains = 域名
local_ip=127.0.0.1
local_port=80
use_encryption=true
use_compression=true
技术有限!!在我看来frps服务端和frpc端互相通信时并没有ssl。
这样安全吗?
应该怎样配置才最安全呢?