Joomla Probleme mit Apache Proxy bei SSL

  • Guten Tag

    Bei mir ergeben sich Probleme beim Zugriff auf eine Seite mit Apache Proxy Server bei SSL-Zugriff.


    Konfiguration:


    Internet → (https) → Apache Proxy → (http) → Joomla (Apache)

    Darstellung funktioniert nicht richtig.


    Internet → (http) → Apache Proxy → (http) → Joomla (Apache)

    Darstellung funktioniert richtig.


    VirtualHost Proxy ohne SSL (test.koller.ch)

    <VirtualHost *:80>

    ServerName test.koller.ch

    ErrorLog ${APACHE_LOG_DIR}/error.log

    CustomLog ${APACHE_LOG_DIR}/access.log combined


    ProxyPreserveHost On

    ProxyRequests Off

    ProxyVia full

    ProxyPass / http://192.168.1.34/

    ProxyPassReverse / http://192.168.1.34/

    </VirtualHost>


    VirtualHost Proxy mit SSL

    <IfModule mod_ssl.c>

    <VirtualHost *:443>

    ServerName oc.koller.ch

    ErrorLog ${APACHE_LOG_DIR}/error.log

    CustomLog ${APACHE_LOG_DIR}/access.log combined


    ProxyPreserveHost On

    ProxyPass / http://192.168.1.34:80/

    ProxyPassReverse / http://192.168.1.34:80/


    SSLCertificateFile /etc/letsencrypt/live/koller.ch/fullchain.pem

    SSLCertificateKeyFile /etc/letsencrypt/live/koller.ch/privkey.pem

    Include /etc/letsencrypt/options-ssl-apache.conf

    </VirtualHost>

    </IfModule>


    Es werden auf dem Proxy-Server folgende Logs generiert:


    Proxy Apache Logs siehe Anhang


    Hat jemand eine Idee, die zur Lösung beiträgt?


    Vielen Dank im Voraus für deine Bemühungen