Loading... 很多小伙伴都有想过要搭建一个内网穿透服务,手上又正好有一台安装有宝塔的服务器,但是上面却安装了其他东西或者建了网站 要是单单想搭建一个内网穿透玩玩不可能再去买一台服务器专门搞这个吧,那就不划算了,最理想的方式就是和当前环境共存使用同一台服务器部署 很简单就一段代码即可,放在nginx/conf/目录下的proxy.conf文件内新增一下代码即可 nginx/conf/proxy.conf 需要改一下的是下面的127.0.0.1:90,把90改成 你的端口,保存重启nginx ```php server { listen 80; server_name 6446454; index index.jsp index.html index.html index.shtml; location / { proxy_pass http://127.0.0.1:90; #Proxy Settings; #proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } } ``` ![请输入图片描述](https://smjc.cc/usr/uploads/2023/10/1801478953.jpg) 最后修改:2023 年 10 月 16 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 如果觉得我的文章对你有用,请随意赞赏
1 条评论
看看