Quote:> My problem has been with getting http and https running at the same
> time. I thought that installing :80 and :443 for each virtual host
> would do it. But it isn't working.
Qualify "isn't working", please. Which error messages, what isn't
working?
This very same setup is working fine for me (where both servers are
fairly idle and used only for some private access, with the SSL setup
allowing a secure access to an email CGI).
I've got something like
...
Listen 80
Listen 443
...
DocumentRoot /usr/local/www/data
SSLDisable
...
<VirtualHost *:443>
SSLRequireSSL
SSLEnable
DocumentRoot /usr/local/www/sdata
</VirtualHost>
...
in httpsd.conf. Note that you do want to disable SSL in the normal
server directories :), so only the port 443 virtual server will
require SSL.
--
cheers, J"org
Never trust an operating system you don't have sources for. ;-)