Difference between revisions of "WebServer - UserDir"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
*<code>sudo a2enmod userdir</code> | *<code>sudo a2enmod userdir</code> | ||
*<code>sudo systemctl restart apache2</code> | *<code>sudo systemctl restart apache2</code> | ||
− | *<code>sudo | + | *<code>sudo vi /etc/apache2/mods-enabled/userdir.conf</code> |
**(see: http://www.techytalk.info/enable-userdir-apache-module-ubuntu-debian-based-linux-distributions/) | **(see: http://www.techytalk.info/enable-userdir-apache-module-ubuntu-debian-based-linux-distributions/) | ||
**<span style="color:#e74c3c">'''NOTE: Verify that you are using the configuration for the correct version of Apache!'''</span> | **<span style="color:#e74c3c">'''NOTE: Verify that you are using the configuration for the correct version of Apache!'''</span> |
Latest revision as of 14:41, 1 January 2022
Sometimes, you might want individual users with accounts on the webserver to have personal pages...
sudo a2enmod userdir
sudo systemctl restart apache2
sudo vi /etc/apache2/mods-enabled/userdir.conf
- (see: http://www.techytalk.info/enable-userdir-apache-module-ubuntu-debian-based-linux-distributions/)
- NOTE: Verify that you are using the configuration for the correct version of Apache!
To set up a personal page for the currently logged-in user:
mkdir ~/public_html
chmod ugo+rX ~/public_html
- create an index.html file in ~/public_html
Assuming this users name is fred, his page can now be reached at MyServer.MyDomain.net/~fred/