Apache httpd : Enable Userdir
[root@www ~]# vi /etc/httpd/conf.d/userdir.conf# line 17 : comment out#UserDir disabled# line 24 : uncommentUserDir public_html# line 32, 33<Directory "/home/*/public_html"> AllowOverride All # change if you need Options None # change if you need Require method GET POST OPTIONS</Directory>[root@www ~]# systemctl reload httpd[2]If SELinux is enabled, change policy like follows.[root@www ~]# setsebool -P httpd_enable_homedirs on[root@www ~]# restorecon -R /home[3]Create a test page with a user and access to it from any client computer with Web browser.[alma@www ~]$ mkdir public_html[alma@www ~]$ chmod 711 /home/faruq[alma@www ~]$ chmod 755 /home/faruq/public_html[alma@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>------------------------------------------------------------------Web: http://server IP/~faruq