美文网首页
nginx 动静分离

nginx 动静分离

作者: 任重而道元 | 来源:发表于2017-09-27 14:52 被阅读17次

    //静态资源
    location ~ ..(js|css|htm|html|gif|jpg|jpeg|png|bmp|swf|ioc|rar|zip|txt|flv|mid|doc|ppt|pdf|xls|mp3|wma)$ { //静态资源到nginx服务器下static获取
    root static;
    expires 30d; //设置缓存期限
    }
    //动态资源
    location ~ .
    $ { //动态请求转发到tomcat服务器
    proxy_pass http://127.0.0.1:8080;
    }

    // ~ 表示区分大小写 $匹配字符串的结尾 . 表示一个.
    location ~ .*.(txt)$ {
    expires 7d;
    }

    相关文章

      网友评论

          本文标题:nginx 动静分离

          本文链接:https://www.haomeiwen.com/subject/sqeuextx.html