zhaojishun 的博客

记录精彩的程序人生

生命不息,折腾不止!
  menu
43 文章
176023 浏览
0 当前访客
ღゝ◡╹)ノ❤️

tomcat+nginx动静分离

tomcat可以处理静态资源,但效率不高,配合nginx实现动静分离

nginx配置

location ~ .*\.(html|htm|gif|jpg|jpeg|bmp|png|ico|txt|js|css)$
    {
        root /www/wwwroot/static/static;
    }

这里说是静态资源都去 /www/wwwroot/static/static 目录下找


标题:tomcat+nginx动静分离
作者:zhaojishun
地址:http://blog.zhaojishun.cn/articles/2019/10/04/1570157888469.html