Nicolas Neuss neuss@math.uni-karlsruhe.de writes:
<VirtualHost localhost:443> ServerName localhost SSLEngine on SSLCertificateFile /home/neuss/CL-HOME/courses/server.cert SSLCertificateKeyFile /home/neuss/CL-HOME/courses/server.key ProxyPass /hunchentoot/ https://127.0.0.1:8005/ ProxyPassReverse /hunchentoot/ https://127.0.0.1:8005/ </VirtualHost>
Success. Reading the apache2 error log I found out that I was missing the activation of SSLProxyEngine. The following works for me as much as I see:
<VirtualHost localhost:443> ServerName localhost SSLEngine on SSLCertificateFile /home/neuss/CL-HOME/courses/server.cert SSLCertificateKeyFile /home/neuss/CL-HOME/courses/server.key SSLProxyEngine On SSLProxyCACertificateFile /home/neuss/CL-HOME/courses/server.cert ProxyPreserveHost On ProxyPass /hunchentoot/ https://127.0.0.1:8005/ ProxyPassReverse /hunchentoot/ https://127.0.0.1:8005/ </VirtualHost>
Yours, Nicolas