Created
October 29, 2019 16:09
-
-
Save diasjorge/4ae9be092542ae82a6af1895c8b3eedf to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Add into server block | |
# Put maintenance page in /home/ubuntu/maintenance/maintenance.html | |
# Return a 503 error if the maintenance page exists. | |
if (-f /home/ubuntu/maintenance/maintenance.html) { | |
return 503; | |
} | |
location @503 { | |
if (-f $request_filename) { | |
break; | |
} | |
root /home/ubuntu/maintenance/; | |
rewrite ^(.*)$ /maintenance.html break; | |
} | |
error_page 503 @503; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment