Skip to content

Instantly share code, notes, and snippets.

@harish2704
Last active February 9, 2016 08:33
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 harish2704/1ed75eb32cfb2ac0d8be to your computer and use it in GitHub Desktop.
Save harish2704/1ed75eb32cfb2ac0d8be to your computer and use it in GitHub Desktop.
Nginx maintenance site
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
server_name localhost;
# 503.html: https://gist.github.com/pitch-gist/2999707
error_page 503 /503.html;
location = /503.html {
internal;
}
location / {
return 503;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment