I installed Apache by using sudo yum -y install httpd
instead of using wget
and installing that way. This means that it has been set up differently.
I'm now trying to install ssl
by using sudo yum install mod_ssl openssl-devel
and I need to run this to configure it:
./configure --enable-so --enable-ssl
make
sudo make install
I don't know where the configure file is for Apache because I installed it through yum instead.
Any ideas on what I need to do to configure SSL?
httpd -M
command output? – 7171u Nov 23 '15 at 13:33ssl_module(shared)
ssl is already enabled. Now try configuring vhosts with ssl (https). – 7171u Nov 23 '15 at 13:43./configure --enable-so --enable-ssl; make; sudo make install
is only needed when you install mod_ssl from tar file. – 7171u Nov 23 '15 at 13:56