This is a discussion on ssl problems on Apache 2.2.3 - Setup ; I installed Apache using the following commands, $ cd httpd-2.2.3 $ ./configure --prefix=/Library/Apache2 --enable-access \ --enable-actions --enable-alias --enable-asis --enable-auth \ --enable-auth_dbm --enable-auth_digest --enable-autoindex \ --enable-cache --enable-cgi --enable-dav --enable-dav_fs \ --enable-deflate --enable-dir --enable-disk_cache \ --enable-dumpio --enable-env --enable-expires --enable-fastcgi \ --enable-file_cache --enable-headers ...
I installed Apache using the following commands,
$ cd httpd-2.2.3
$ ./configure --prefix=/Library/Apache2 --enable-access \
--enable-actions --enable-alias --enable-asis --enable-auth \
--enable-auth_dbm --enable-auth_digest --enable-autoindex \
--enable-cache --enable-cgi --enable-dav --enable-dav_fs \
--enable-deflate --enable-dir --enable-disk_cache \
--enable-dumpio --enable-env --enable-expires --enable-fastcgi \
--enable-file_cache --enable-headers --enable-imap \
--enable-include --enable-info --enable-log_config \
--enable-log_forensic --enable-logio --enable-mem_cache --enable-mime \
--enable-mime_magic --enable-negotiation --enable-perl \
--enable-rewrite --enable-setenvif --enable-speling --enable-ssl \
--enable-status --enable-suexec --enable-unique_id --enable-userdir \
--enable-usertrack --enable-version --enable-vhost_alias --enable-so \
--enable-module=all --enable-shared=max
$ make
$sudo make install
Whey I run httpd -l command from the bin directory, I don't see,
mod_ssl.c in the output. As you see from above I ran the switch
--enable-ssl but still I don't see it.
Do I need to run --with-ssl=/directory of openssl as well?
Please let me know.
Thanks,
yip