How can I make a public HTML folder in Ubuntu?
Assuming you’ve already installed apache, do the following: sudo a2enmod userdir sudo service apache2 reload The first command enables the userdir apache mod, which does exactly what you want. The second reloads apache configurations so that it starts using the new configuration. To install apache2: sudo apt-get install apache2 Of course, you’ll also need to … Read more