首先已安装Niginx和tomcat可参考:Linux安装配置Niginx Linux安装配置tomcat。
1.修改Nginx配置文件
vim /usr/local/nginx/conf/nginx.conf #在server{}中添加配置如下: root /var/wwwroot;#指定网页的根目录(可选) location ~ .*.jsp$ { #定义所有以.jsp结尾 index index.jsp; #默认网页为index.jsp proxy_pass http://localhost:8080;#代理地址为本机的8080端口 }
2.测试Nginx配置文件
/usr/local/nginx/sbin/nginx -t #如下显示代表测试通过: nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
3.重启并查看nginx端口
/usr/local/nginx/sbin/nginx -s reload netstat -antp|grep nginx
4.验证
在网站目录下放一个a.jsp,用浏览器访问http://localhost/a.jsp,应该可以看到正确的页面了。
转载请注明:零五宝典 » Linux配置Niginx+tomcat整合