Skip to content

Instantly share code, notes, and snippets.

@thehelvetian
Created June 15, 2019 04:51
Show Gist options
  • Save thehelvetian/a4decf4dc07c0b0840b5c8082ad031ca to your computer and use it in GitHub Desktop.
Save thehelvetian/a4decf4dc07c0b0840b5c8082ad031ca to your computer and use it in GitHub Desktop.
NGINX maintenance mode
location / {
if (-f $document_root/.maintenance) {
return 503;
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment