Monthly Archive for December, 2010

vim tab 快捷键配置

1
2
3
4
map th :tabnext<CR>
map tl :tabprev<CR>
map tn :tabnew<CR>
map td :tabclose<CR>

Nginx上ETag支持

1
2
3
4
5
6
    location ~* ^.+.(gif|jpg|css|js|png)$ {
        root   /var/web/static;
        FileETag on;
        etag_format \"%X%X\";
        add_header    Cache-Control     max-age=0;
    }

这样就可以返回304啦。