Skip to content

Instantly share code, notes, and snippets.

@soffes
Created August 19, 2009 06:04
Show Gist options
  • Save soffes/170199 to your computer and use it in GitHub Desktop.
Save soffes/170199 to your computer and use it in GitHub Desktop.
sample nginx conf
server {
listen 80;
server_name example.com;
root /var/www/example.com/current/public;
passenger_enabled on;
location ~ "/{javascripts|stylesheets|images}/" {
expires 31d;
}
}
server {
listen 80;
server_name *.example.com;
rewrite ^(.*) http://example.com$1 permanent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment