frp + nginx 实现 https 穿透

frp + nginx 实现 https 穿透

月光魔力鸭

2020-06-10 15:37 阅读 2521 喜欢 0 frp https nginx + frp

通过frp做穿透实现https 访问本地http项目。

项目需要https环境,由于开发状态中,需要做一个穿透,之前都是 frp 做的 http穿透,比较简单,结果找了下https的资料和github上的怎么都不行,瞎折腾了一个小时...

准备

证书申请,然后下载,拿到nginx配置的两个文件.

然后,确保本地项目能正常启动并可以访问,我本地的是: http://localhost:8090/example

下载对应的frp软件,我使用的是0.33 版本(最新的),地址https://github.com/fatedier/frp/releases ,下载对应的windows 和 linux版本。

nginx 配置

    # frp 穿透 https://live.example.com
    server {
        listen 443 ssl;
        server_name live.example.com;

        location / {
            proxy_pass   http://localhost:5556;
            client_max_body_size    1000m;
            proxy_set_header Host $host:$server_port;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header REMOTE-HOST $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header User-Agent $http_user_agent;
            proxy_set_header X-Forwarded-Proto $scheme;
        }
        ssl_certificate cert/1_live.example.com_bundle.crt;
        ssl_certificate_key cert/2_live.example.com.key;
        ssl_session_timeout 5m;
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #按照这个协议配置
        ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;#按照这个套件配置
        ssl_prefer_server_ciphers on;
    }

frps.ini

[common]
bind_port = 7001
vhost_http_port = 5556
vhost_https_port = 5557

frpc.ini

[common]
server_addr = 59.222.12.198
server_port = 7001

[test_https]
type = http
local_port = 8090
custom_domains = live.example.com

启动

server端

./frps -c ./frps.ini

client端

./frpc -c ./frpc.ini

这里面碰到一个问题,jsp中的request.getServerPort() 得到的总是80 ,本应该是443 ,解决:

# 增加 $server_port 即可
proxy_set_header Host $host:$server_port;

第二个问题,request.getScheme() 得到的总是 http ,查资料说是:

# 增加这一句
proxy_set_header X-Forwarded-Proto $scheme;

不过对于我来说没有解决,框架是springboot ,目前直接写死了,先测试用着。

转载请注明出处: https://chrunlee.cn/article/frp-https-nginx.html


感谢支持!

赞赏支持
提交评论
评论信息 (请文明评论)
暂无评论,快来快来写想法...
推荐
很久之前学习chrome扩展插件的时候已经做过一个了,好久没咋用,最近又跑了一个存储服务,准备在配合这个服务做个图床,以后就用这个了,之前的服务器到期忘了迁移数据都没了,这次换了服务器,在家里了,估计以后不会再做了吧,这个算是最后一个了,有啥问题就在这个进行优化了。
最近感觉docker挺好用的,由于测试服务器经常重装,这里先记录下compose文件,后边重装直接复制就行啦。
需求:可能会有在页面加载的时候想执行某个js,例如统计页面的DOM等等。
最近看某站壁纸挺好看的,抓了几百张放本地...可总不能每天手动去换吧,就做了一个随机更换的小工具。
上一章,我们学习和了解了websocket 是什么以及初始搭建,接下来,我们继续了解,如何进行广播以及对应的私聊呢。
整理一些相关的信息,防止后续再找不到。
国庆马上来临,头像已经先热起来了,为了蹭蹭热度,赶紧加班搞了一个。
简单记录下dockerfile 以及compose配置