博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx代理frp_web_80端口
阅读量:5758 次
发布时间:2019-06-18

本文共 885 字,大约阅读时间需要 2 分钟。

  • 官方issues中已经有相关问题的解答了:
  • 参考:

  • 配置 Nginx
server {    listen 80;    server_name *.frp.example.com;    location / {        proxy_pass http://127.0.0.1:8080;        proxy_set_header    Host            $host:80;        proxy_set_header    X-Real-IP       $remote_addr;        proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;        proxy_hide_header   X-Powered-By;    }}

非常简单的一个 server 模块,监听 *.frp.example.com 并转发给 127.0.0.1:8080,所以接下来只要将 frp 默认监听 80 端口改成 8080 端口就好了。

  • 配置 frp 服务端:
[common]bind_addr = 0.0.0.0bind_port = 7000vhost_http_port = 8080subdomain_host = frp.example.com[abc]type = httpsubdomain = abcauth_token = XXX

这基本就是一个最小配置了,重点在于将 vhost_http_port 设为 8080,其它基本是一致的。

  • 配置 frp 客户端:
[common]server_addr = 123.123.123.123server_port = 7000auth_token = XXX[abc]type = httplocal_port = 80subdomain = abc

最后这是 frp 客户端的配置文件,没什么特殊之处,以备后用。现在直接访问 abc.frp.example.com 就可以访问到本地的网站咯~

转载地址:http://pktkx.baihongyu.com/

你可能感兴趣的文章
Centos7同时运行多个Tomcat
查看>>
使用CocoaPods过程中的几个问题
查看>>
我的友情链接
查看>>
为eclipse安装maven插件
查看>>
公司新年第一次全员大会小记
查看>>
最懒的程序员
查看>>
JAVA8 Stream 浅析
查看>>
inner join on, left join on, right join on要详细点的介绍
查看>>
SAS vs SSD对比测试MySQL tpch性能
查看>>
Spring boot 整合CXF webservice 全部被拦截的问题
查看>>
Pinpoint跨节点统计失败
查看>>
【Canal源码分析】Canal Server的启动和停止过程
查看>>
机房带宽暴涨问题分析及解决方法
查看>>
iOS 绕过相册权限漏洞
查看>>
我的友情链接
查看>>
XP 安装ORACLE
查看>>
八、 vSphere 6.7 U1(八):分布式交换机配置(vMotion迁移网段)
查看>>
[转载] 中华典故故事(孙刚)——19 万岁
查看>>
修改hosts文件里面的主机名,oralce asm无法启动
查看>>
Maven学习总结(十)——使用Maven编译项目gbk的不可映射问题
查看>>