Total de visualizações de página

sábado, 23 de abril de 2016

Enable Userdir


Enable Userdir
2014/07/18
 
Enable userdir, users can create websites with this setting.
[1]Configure httpd.
[root@www ~]# 
vi /etc/httpd/conf.d/userdir.conf
# line 17: comment out

#
UserDir disabled
# line 24: uncomment

UserDir public_html
# line 31 - 35

<Directory "/home/*/public_html">
    AllowOverride 
All
# change

    Options 
None
# change

    Require method GET POST OPTIONS
</Directory>
[root@www ~]# 
systemctl restart httpd 
[2]Create a test page with a user and access to it from client PC with web browser. It's OK if following page is shown.
[cent@www ~]$ 
mkdir public_html 

[cent@www ~]$ 
chmod 711 /home/cent 

[cent@www ~]$ 
chmod 755 /home/cent/public_html 

[cent@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>

Nenhum comentário:

Postar um comentário