Gentile community di Discourse. Ho una domanda con cui spero possiate aiutarmi.
Vorrei installare Discourse su una macchina virtuale Ubuntu dedicata (Oracle VirtualBox). Esempio: 192.168.6.15.
Ho già server Apache2 e Nginx in esecuzione sulla stessa rete locale.
Potrei semplicemente usare un proxy come:
(esempio apache)
ServerName forum.example.org
RewriteEngine On
SSLEngine On
SSLCertificateFile /etc/letsencrypt/live/forum.example.org/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/forum.example.org/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
ProxyPreserveHost On
ProxyRequests Off
ProxyPass / http://192.168.6.15:4578/
ProxyPassReverse / http://192.168.6.15:4578/
Funzionerebbe?
È una buona pratica?
Immagino che Let’s Encrypt su un server proxy gestirà SSL?