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

Tengine(Nginx)动静分离简要配置

时间:2014-11-19 20:43:40      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:http   io   sp   文件   on   bs   html   as   htm   


要点:根据URL规则,分离静态资源。例子中是根据“/static/”这个路径分离


1、把原应用服务器的static文件夹移到Tengine的html文件夹下


2、配置nginx.conf,把URL/static/”的全部转到Tengine的html下,在server {}中增加:

location ~* /static/ {
    root html;
}


3、配置nginx.conf,把其他的请求全部转到应用服务器(Tomcat),

A.配置应用服务器集合,在http {}中增加:

upstream testwww{
    server   192.168.0.103:9080;
}

B.把其他的请求全部转到应用服务器集合“testwww,修改server {}中的location / {}:

location / {
    proxy_pass   http://testwww;
    root   html;
    index  index.html index.htm;
}


4.完成。





Tengine(Nginx)动静分离简要配置

标签:http   io   sp   文件   on   bs   html   as   htm   

原文地址:http://my.oschina.net/u/1587335/blog/346492

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