Skip to content

Instantly share code, notes, and snippets.

@graffic
Created July 16, 2012 11:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save graffic/3122169 to your computer and use it in GitHub Desktop.
Save graffic/3122169 to your computer and use it in GitHub Desktop.
Nginx maintenance snippet
server {
...
# This is a copy&paste snippet to put your server in maintenance mode
error_page 503 @maintenance;
location @maintenance {
rewrite ^(.*)$ /maint.html break;
}
return 503;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment