Ubuntu 18.04
Sponsored Link

Apache2 : Enable Userdir2018/06/08

 
Enable userdir, users can create websites with this setting.
[1] Configure Apache2.
root@www:~#
a2enmod userdir

Enabling module userdir.
To activate the new configuration, you need to run:
  systemctl restart apache2
root@www:~#
systemctl restart apache2

[2] Create a test page with a common user and access to it from client PC with web browser. It's OK if following page is shown.
ubuntu@www:~$
mkdir ~/public_html

ubuntu@www:~$
vi ~/public_html/index.html
<html>
<body>
<div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;">
UserDir Test Page
</div>
</body>
</html>
Matched Content