On Thu, Oct 18, 2007 at 05:00:44PM -0500, Winston H. Messer wrote:
> Hi.
> 
> I am trying to set up a Savane install on a current Debian server.
> I have apache2 and php4.
> I've followed the setup instructions
> here:http://download.gna.org/savane-doc/savane-install-guide-HTML/x562.html
> as best as I can.
> However, all the docs are for apache 1.3, and they've moved away from
> monolithic configs, so I compensated accordingly.
> 
> I can go to the site, and do anything that doesn't require logging in
> just fine.  When I go to log in, I get a message explaining the
> certificate, I accept it, and it goes to a 404.  As far as I can tell,
> this is ideal, except for the 404 part.
> 
> Any ideas?

Hi,

It is likely that you need to define another VirtualHost for https
(*:443). At Savannah I use 2 VirtualHost's (one for
savannah.gnu.org:80, one for savannah.gnu.org:443), and both include
the same common configuration file.

<VirtualHost 199.232.41.3:80>
  Include sites-available/sv.gnu.inc
</VirtualHost>

<VirtualHost 199.232.41.3:443>
  SSLEngine on
  SSLCertificateFile    /etc/apache/ssl.crt/savannah.gnu.org.crt
  SSLCertificateKeyFile /etc/apache/ssl.key/savannah.gnu.org.key

  Include sites-available/sv.gnu.inc
</VirtualHost>


-- 
Sylvain

_______________________________________________
Savane-help mailing list
[email protected]
https://mail.gna.org/listinfo/savane-help

Reply via email to