Nginx 사용자 로 컬 컴퓨터 에 캐 시 최적화

[root@blog ~]# vi /etc/nginx/conf.d/default.conf
server {listen 80;server_name localhost;
#charset koi8-r;
#access_log  /var/log/nginx/host.access.log  main;

location / {
    root   /usr/share/nginx/html;
    index  index.php index.html index.htm;
}
    .........code
.........code
......code
    #     ;         gif|jpg|jpeg  ...               ,
                ,       
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
            {
                  expires 30d;
             }
}

좋은 웹페이지 즐겨찾기