在服务器上使用`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 对流量进行修改。
donggan319 声望
vhost_http_port = 7171 保存退出,重启frp systemctl restart frps 配置Nginx代理 配置https、SSL证书,将pem(crt),key两个证书文件放在/etc/nginx/ssl_files文件夹下,命名为server.pem,server.key 创建nginx配置文件 cd /etc/nginx/conf.d/ 新增一个conf文件(https_www.gworg.com.conf),输入如下配置: # frp...
首先在首页 | OpenFrp管理面板开通两个香港线路,都对应这本地的2086端口(即放置halo博客的端口),两个线路分别穿透http和https流量。 下载openfrp的linux客户端,写一个frpc.ini文件,和下载的客户端放在一个目录中,frpc.ini的内容如下: [common] #这部分的配置需要根据自己开通的隧道在openfrp的配置面板获取 ...
frps.ini(服务端配置) [common] bind_port = 5443 kcp_bind_port = 5443 vhost_http_port = 8080 vhost_https_port = 4443 # Frp的服务器指示面板配置 admin_addr = frp.test.com dashboard_port = 6443 dashboard_user = test dashboard_pwd = test ...
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 ...
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;...
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$ { ...
上面这段配置实现了: 1、当用户访问的域名是:http://book.chanshuyi.com 时,我们自动将其请求转发给端口号为 8001 的 Tomcat 应用处理。 2、当用户访问的域名是:http://movie.chanshuyi.com 时,我们自动将其请求转发给端口号为 8002 的 Tomcat 应用处理。