Skip to content

Instantly share code, notes, and snippets.

@n0ts
Created August 30, 2012 07:50
Show Gist options
  • Save n0ts/3523867 to your computer and use it in GitHub Desktop.
Save n0ts/3523867 to your computer and use it in GitHub Desktop.
nginx rewrite rule
location ~ ^/(.*)/(css|img|js)/.*$ {
set $uri_type $1;
rewrite ^/\w+/(.*[^/])$ /$1;
if ( $uri_type = hoge1 ) {
root /var/www/hoge1/static/;
}
if ( $uri_type = hoge2 ) {
root /var/www/hoge2/static/;
}
expires max;
break;
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment