码迷,mamicode.com
首页 > 其他好文 > 详细

nginx 反向代理实例

时间:2020-06-25 19:39:43      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:实例   localhost   test   listen   nbsp   family   ext   hosts   启动   

反向代理实例一

实现效果:使用 nginx 反向代理,访问 www.test.com 直接跳转到 127.0.0.1:8080

  1. 启动tomcat
  2. 修改hosts文件

 技术图片

 

 

  1. 修改nginx.conf

server {

listen       80;

        server_name  www.test.com;

 

        location / {

            proxy_pass http://127.0.0.1:8081;

            index  index.html index.htm;

        }

 

}

反向代理实例 2

准备两个tomcat 分别设置 80818082 端口和新建 edu vod 目录

index.html 页面

nginx.conf

添加以下配置

技术图片

 

注意:代理服务器只是起到隐藏真实地址,当访问localhost:9001/edu

内部会解析成 http://127.0.0.1:8081/edu tomcat默认去找webapps这个 edu的目录下的页面

 

nginx 反向代理实例

标签:实例   localhost   test   listen   nbsp   family   ext   hosts   启动   

原文地址:https://www.cnblogs.com/kali5k/p/13192528.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!