Tag apache

Create a Self Signed Certificate with OpenSSL

Learn how to create a free self signed SSL certificate using OpenSSL and add it to your private Apache or nginx test server. Start testing with https instead of http, just like any website should work today.

Create Virtual Hosts for Apache on CentOS

For each website (domain or subdomain) you need a Virtual Host, a file that contains information for Apache to find where the website's files are on your server, how to access them, where to write the logs, etc.

Connect Apache to Tomcat Using mod_jk

This short tutorial will explain how to connect Apache 2 to Tomcat 10 using mod_jk. First thing, let’s install mod_jk. Now let’s create the workers properties file: Here is a simple workers.properties example: Next, edit Tomcat’s server.xml file to enable…

Create a Virtual Host for Apache on Ubuntu

After you installed Apache you can start hosting websites. For each website (domain or subdomain) you will need a Virtual Host. This requires a file that conatins information for Apache to find where the website’s files are on your server,…