nginx反向代理实战小demo
’
需要实现功能:在浏览器输入
www.yurenweidu.com
时,自动访问到linux服务器tomcat首页
-
首先Linux服务器上需要安装tomcat,安装步骤https://blog.csdn.net/nyasm/article/details/113855023
-
在Windows电脑上修改
host
,将linux服务器上的ip
对应自己想要的域名类似这种写法
-
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;
}
}
- 这时候我们在浏览器输入
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首页。