在服务器上使用`mkdir frp` 新建一个文件夹,然后执行`cd frp`进入文件夹内部 使用`wget +frp包的地址`下载安装包到云服务器。 frp包链接:[https://github.com/fatedier/frp/releases](https://github.com/fatedier/frp/releases) ![image-20240408215552563](https://img-blog.csdnimg.cn/img_convert/ce04f8...
下面这行字是写给非 HTTP 流量的用户看的,如果您穿透的是 HTTP 流量请不要动auto_https_mode这个选项 当然,这个功能也可以用在其他地方。如果您有非 HTTP 流量需要用 TLS 进行一个套,也可以启用这个功能,但是最好把auto_https_mode配置为passthrough来避免 frpc 对流量进行修改。
http_pwd = test vhosts.conf(Nginx配置) server { listen 80; listen 443 ssl http2; ssl_certificate /usr/local/nginx/conf/ssl/lede.frp.test.com.crt; ssl_certificate_key /usr/local/nginx/conf/ssl/lede.frp.test.com.key; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers EECDH+CHACHA20:...
配置frps服务端 登录服务器,前往frps安装目录 cd /usr/local/frp_0.27.0_linux_amd64/ 打开配置文件 vim frps.ini 设置虚拟端口,新增如下内容: vhost_http_port = 7171 保存退出,重启frp systemctl restart frps 配置Nginx代理 配置https、SSL证书,将pem(crt),key两个证书文件放在/etc/nginx/ssl_files文件夹下...
Frpc.ini配置说明 代码语言:javascript 复制 [web_https]type=https custom_domains=dabenshi.cn # 以下为https新加的内容 plugin=https2http plugin_local_addr=192.168.31.162:80#证书相关配置 plugin_crt_path=/frp/FRP/frp_0.34.3_linux_386/ssl/1_dabenshi.cn_bundle.crt ...
首先在首页 | OpenFrp管理面板开通两个香港线路,都对应这本地的2086端口(即放置halo博客的端口),两个线路分别穿透http和https流量。 下载openfrp的linux客户端,写一个frpc.ini文件,和下载的客户端放在一个目录中,frpc.ini的内容如下: [common] #这部分的配置需要根据自己开通的隧道在openfrp的配置面板获取 ...
location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. try_files $uri $uri/ =404; } # pass the PHP scripts to FastCGI server listening on127.0.0.1:9000# #location~\.php$ { ...
frp + nginx 内网穿透https nginx 配置 #user nobody; worker_processes 1; error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; pid /usr/local/webserver/nginx/nginx.pid; events { worker_connections 1024;...
上面这段配置实现了: 1、当用户访问的域名是:http://book.chanshuyi.com 时,我们自动将其请求转发给端口号为 8001 的 Tomcat 应用处理。 2、当用户访问的域名是:http://movie.chanshuyi.com 时,我们自动将其请求转发给端口号为 8002 的 Tomcat 应用处理。