Sin descripción

Ilya Sosnovsky c6f87f7a59 fix readme hace 5 años
css 9c3a30276e Change centering of message section hace 7 años
fonts 6e594bb295 add fonts for IE and Safari hace 7 años
img 813bf0f577 [ImgBot] Optimize images hace 5 años
js 1de8a5748f add page hace 7 años
403.html 26acbaf9ea Added error pages hace 5 años
404.html 26acbaf9ea Added error pages hace 5 años
50x.html 26acbaf9ea Added error pages hace 5 años
CNAME 56df1104be Create CNAME hace 6 años
LICENSE c02736f920 Initial commit hace 7 años
README.md c6f87f7a59 fix readme hace 5 años
_config.yml 523acbc515 Set theme jekyll-theme-minimal hace 7 años
index.html 9c3a30276e Change centering of message section hace 7 años

README.md

MaintenancePage

Simple to install and use

  1. cd /var/www
  2. 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;
        }
}