trouble with apache 1.3 & https & debian
I am trying to set up https on my mail server to use for webmail and for a webdav project. I installed apache-ssl and the mod-ssl modules and have been fighting getting the httpsd started up. For some reason the auto managed modules.conf does not include several modules needed for directives such as LogFormat and such.
I got around this by manually loading the modules in the httpd.conf file. I added the following:
LoadModule config_log_module /usr/lib/apache/1.3/mod_log_config.so
LoadModule mime_module /usr/lib/apache/1.3/mod_mime.so
LoadModule auth_module /usr/lib/apache/1.3/mod_auth.so
LoadModule ssl_module /usr/lib/apache/1.3/mod_ssl.so
LoadModule php4_module /usr/lib/apache/1.3/libphp4.so
LoadModule random_module /usr/lib/apache/1.3/mod_random.so
Now I am getting an error that:
Syntax error on line 1098 of /etc/apache-ssl/httpd.conf:
Invalid command 'SSLRandomFile', perhaps mis-spelled or defined by a module not included in the server configuration
I have installed mod_random and loaded it in the httpd.conf so I don't get why I am getting this message or how I can get around it.
Any ideas are appreciated.
Thanks
|