Ilya Sosnovsky c6f87f7a59 fix readme | 4 years ago | |
---|---|---|
css | 7 years ago | |
fonts | 7 years ago | |
img | 5 years ago | |
js | 7 years ago | |
403.html | 4 years ago | |
404.html | 4 years ago | |
50x.html | 4 years ago | |
CNAME | 6 years ago | |
LICENSE | 7 years ago | |
README.md | 4 years ago | |
_config.yml | 7 years ago | |
index.html | 7 years ago |
cd /var/www
git clone https://github.com/pashcovich/maintenance_page
I use this simple configuration for nginx
on my servers:
# Default server configuration
#
server {
listen 80 default_server;
listen [::]:80 default_server;
# listen 443 ssl default_server;
# listen [::]:443 ssl default_server;
root /var/www/maintenance_page;
error_page 403 = /403.html;
error_page 404 = /404.html;
error_page 500 502 503 504 /50x.html;
index index.html;
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
}