OK, só me levou 2 horas de mexer para deixá-lo como eu queria!
Página de Manutenção do Discourse com Apache2
Como root
cd /var/discourse
nano containers/app.yml
Comente estas linhas:
#- "templates/web.ssl.template.yml"
#- "templates/web.letsencrypt.ssl.template.yml"
expose:
#- "80:80" # http
#- "443:443" # https
Adicione no FINAL da seção de templates (deve ser o último):
- "templates/web.socketed.template.yml"
Nota: Isso fará com que o Discourse escute apenas no IP interno e o apache2 assumirá as portas 80/443 e a terminação SSL.
Nota: O Discourse deve ser reconstruído para que isso tenha efeito:
cd /var/discourse
./launcher rebuild app
Instale apache2 e certbot
apt install -y apache2 certbot python3-certbot-apache
Crie um diretório para a página html:
mkdir /var/www/discourse_maintenance
Página HTML:
/var/www/discourse_maintenance/discourse_maintenance.html
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="5">
<title>Discourse Maintenance</title>
<style>
.center {
display: flex;
justify-content: center;
}
.container {
max-width: 500px;
padding: 50px 50px 30px 50px;
}
.title {
padding-top: 20px;
}
h1, p {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
</style>
</head>
<body>
<div class="center">
<div class="container">
<h1 class="title">Discourse Maintenance…</h1>
<p>We are currently upgrading the site, or performing scheduled maintenance.</p>
<p>You'll automatically be redirected to the site once it's available.</p>
</div>
</div>
</body>
</html>
Habilite o Módulo Proxy:
a2enmod proxy
a2enmod proxy_http
a2enmod headers
Arquivo vhost do Apache:
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName your.discourse.domain
ServerAdmin your@email.com
DocumentRoot /var/www/discourse_maintenance
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# Maintenance Mode
RewriteEngine On
RewriteCond /var/www/under_maintenance -f
# safety check to prevent redirect loops
RewriteCond %{REQUEST_URI} !/discourse_maintenance.html$
# redirect internally all requests to maintenance.html
RewriteRule ^.*$ /var/www/discourse_maintenance/discourse_maintenance.html
ProxyPass / unix:///var/discourse/shared/standalone/nginx.http.sock|http://127.0.0.1/
ProxyPassReverse / unix:///var/discourse/shared/standalone/nginx.http.sock|http://127.0.0.1/
SSLCertificateFile /etc/letsencrypt/live/your.discourse.domain/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/your.discourse.domain/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>
Para habilitar a manutenção, execute touch /var/www/under_maintenance
Para desabilitar a manutenção, execute touch /var/www/under_maintenance
Créditos: Add an offline page to display when Discourse is rebuilding or starting up pela ideia inicial, página html (cortada/editada ao meu gosto) e configuração nginx na qual baseei a configuração do Apache.
Edição: Sugestões são bem-vindas para torná-lo automático quando a resposta for 502/503. Tentei, mas não consegui fazer funcionar como eu queria, então optei por um método conhecido que uso em outros servidores web quando a aplicação backend está fora para manutenção, etc.