当前位置:Gxlcms > PHP教程 > nginx反向代理笔记(1)整合tomcat

nginx反向代理笔记(1)整合tomcat

时间:2021-07-01 10:21:17 帮助过:37人阅读

1.安装nginx

2.配置nginx.conf::

server{

listen 80;
server_name weixin.xxx.com;(域名)
charset utf-8;

location / {
proxy_pass http://localhost:81;(指向服务器81端口本地项目tomcat)
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$(解析图片)
{
root D:/web/cmmsweixin;
if (-f $request_filename) {
expires 1d;
break;
}
}

location ~ .*\.(js|css)$(js|css)
{
root D:/web/cmmsweixin;
if (-f $request_filename) {
expires 1d;
break;
}
}

}

版权声明:本文为博主原创文章,未经博主允许不得转载。

以上就介绍了nginx反向代理笔记(1)整合tomcat,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行