Last active
February 9, 2016 08:33
-
-
Save harish2704/1ed75eb32cfb2ac0d8be to your computer and use it in GitHub Desktop.
Nginx maintenance site
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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