On 12/14/06, frank rittinger <frank.rittinger@xxxxxxxxxxxxxxxxxxxx> wrote:
Hello list, I'm trying to get apache2 working as a reverse proxy. Regular HTTP requests just work fine, but I can't get it working for HTTPS requests. On startup of apache, I get the following error in the logs: You configured HTTP(80) on the standard HTTPS(443) port! Although, I just want to pass on the requests, do I still have to set up SSL support properly? I have such a vhosts definition: <VirtualHost 10.1.2.45:443> SSLProxyEngine on ProxyRequests Off ProxyPreserveHost On ProxyPass / https://10.1.2.27:443/ ProxyPassReverse / https://10.1.2.27:443/ ServerName test.com:443 </VirtualHost> Apache 2.0.x on SuSE Linux 9.3. With modules proxy, ssl, proxy_connect, proxy_http.
You configured SSL for the proxy->backend connection, but you haven't configured SSL for the client->proxy connection. You would need at least SSLEngine On in the vhost (and perhaps a bunch of other stuff for certificates, etc, depending on the config). Joshua. --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx