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

nginx实现动静分离

时间:2017-11-06 11:18:32      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:ash   error   htm   zip   com   http   str   serve   listen   

upstream java_api {
    server 127.0.0.1:8080;
}

server {
    listen  80;
    server_name  www.heboan.com;

    access_log /var/log/nginx/log/www_heboan_com.access.log
    root /opt/app/code;

    location ~ \.jsp$ {
        proxy_pass  http://java_api;
        index  index.html index.htn;
    }

    location ~ \.(jpg|png|gif)$ {
        expires 1h;
        gzip on;
    }

    error_page  500 502 503 504 404 /50x.html;
}

  

nginx实现动静分离

标签:ash   error   htm   zip   com   http   str   serve   listen   

原文地址:http://www.cnblogs.com/sellsa/p/7791666.html

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