Page under maintenance in NGINX
Sometimes I need to stop my website to put it under maintenance and I use the following NGINX configuration: server { server_name mypage.com; listen 443 ssl http2; listen [::]:443 ssl http2; root /var/www/mypage.com/public_html/; index maintenance.html; } The question is, if…