Set Up HTTPS In Apache

Setting up HTTPS,  is also easy. As usual, open up httpd.conf found in the conf directory of your Apache installation directory. First, you need to enable the SSL module. Make sure to uncomment the line that loads mod_ssl.so: LoadModule ssl_module modules/mod_ssl.so To support HTTPS, you normally would listen to port 443. You need to register [...]



 Set Up Name-Based Virtual Hosts In Apache

If your server has only one IP  (or even if you have many) and you want to host different websites you can use Apache’s name-based virtual hosts feature. Setting up name-based virtual hosts is easy. First, open up httpd.conf found in the conf directory of your Apache installation directory. First, you need to enable name-based [...]



 Set Up IP-Based Virtual Hosts In Apache

If your server has multiple IPs  and you want to host different website for each IP you can use Apache’s IP-based virtual hosts feature. Setting up IP-based virtual hosts is easy. First, open up httpd.conf found in the conf directory of your Apache installation directory. You need to register the IPs that you want Apache [...]