nginx反向代理实战小demo

需要实现功能:在浏览器输入www.yurenweidu.com时,自动访问到linux服务器tomcat首页

  1. 首先Linux服务器上需要安装tomcat,安装步骤https://blog.csdn.net/nyasm/article/details/113855023

  2. 在Windows电脑上修改host,将linux服务器上的ip对应自己想要的域名在这里插入图片描述类似这种写法

  3. linux服务器上nginx.conf配置文件进行配置

server
    {
        listen 80;
        server_name 118.31.3.xxx;
        root  /www/server/phpmyadmin;

        #error_page   404   /404.html;
        include enable-php.conf;

        location / {
            root   html;
            proxy_pass http://127.0.0.1:8080;
            index  index.html index.htm;
        }
    }
  1. 这时候我们在浏览器输入www.yurenweidu.com时就相当于访问linux服务器ip加上端口号80,因为默认80,而118.31.3.xxx:80又转发到了linux服务器上的http://127.0.0.1:8080,相当于访问tomcat的首页,所有这时候输入www.yurenweidu.com时,浏览器会通过nginx服务器直接访问到tomcat首页。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐