The requested URL could not be retrieved
Actually,I am running the apache1.3.33 on the server and trying to access the web pages from the client in the LAN only. I followed the steps as given below.
cd /opt/src
untar:
tar -xzf apache_1.3.33.tar.gz
tar -xzf mod_ssl-2.8.22-1.3.33.tar.gz
tar -xzf openssl-0.9.7g.tar.gz
install openssl:
cd openssl-0.9.7g
./config
make
make install
cd ..
ready apach with modssl:
cd mod_ssl-2.8.22-1.3.33
./configure --with-apache=../apache_1.3.33
cd ..
install apache:
cd apache_1.3.33
make clean
SSL_BASE="/usr/local/ssl" ./configure --prefix=/etc/httpd --enable-module=headers --enable-module=ssl --enable-module=so --enable-module=rewrite --disable-rule=SSL_COMPAT
make
make install
cd ..
But I am not able to acces the pages from the above configured server.
Please help me out.
Thank You.
|