View a directory in a home folder on your website

So you have your Apache or HTTPD network setup on your system properly. It is posting when you navigate to it in your browser, and you want to allow people to view the contents of a subfolder on your website. The first step is to make a soft link to the folder in your /var/www/html …

Build an Apache Server on Ubuntu

We are going to host two different websites on an Apache Server running Ubuntu. Step 1, install packages sudo apt-get install apache2 Step 2, create your conf files Create two conf files in /etc/apache2/sites-available Call them site1.conf and site2.conf Create links using ln-s to both of those conf files in /etc/apache2/sites-enabled sudo ln -s /etc/apache2/sites-available/site1.conf …