Skip to content

Instantly share code, notes, and snippets.

@lyonsun
lyonsun / nginx.conf
Created October 29, 2013 03:21
nginx config for codeigniter, but this doesn't work for me.
server_name localhost;
root "E:\LYON\NGINX\citestonginx";
index index.html index.php;
# set expiration of assets to MAX for caching
location ~* \.(ico|css|js|gif|jpe?g|png)(\?[0-9]+)?$ {
expires max;
log_not_found off;
}