Skip to content

Instantly share code, notes, and snippets.

@codesnik
Forked from anonymous/gist:137126
Created June 27, 2009 21:24
Show Gist options
  • Save codesnik/137127 to your computer and use it in GitHub Desktop.
Save codesnik/137127 to your computer and use it in GitHub Desktop.
server {
listen 0.0.0.0;
server_name s.ight.ru laresistance.ru;
access_log logs/laresistance.access_log main;
error_log logs/laresistance.error_log info;
root /home/codesnik/apps/laresistance/current/public;
location ~ ^/(images|javascripts|stylesheets|system)/ {
expires max;
break;
}
location / {
try_files /system/maintenance.html $uri $uri/index.html $uri.html @rails;
}
location @rails {
passenger_enabled on;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment