Hello,
I want to make rocket.chat accessible under a subdomain. Unfortunately I only get one white page in my browser.
Currently I have created a new configuration file in the directory /etc/apache2/sites-enable/.
rocketchat-ssl.conf
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAlias rocketchat.domain.org
SSLEngine on
SSLProxyEngine on
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
SSLCertificateFile /etc/univention/letsencrypt/signed_chain.crt
SSLCertificateKeyFile /etc/univention/letsencrypt/domain.key
SSLCACertificateFile /etc/univention/ssl/ucsCA/CAcert.pem
ProxyPass / http://127.0.0.1:40002/rocketchat/ retry=0
ProxyPassReverse / http://127.0.0.1:40002/rocketchat/
</VirtualHost>
</IfModule>
In RocketChat I have adapted the website URL. Unfortunately the browser shows only a white page. Where do I have to change the settings?
Greeting
Christian