WebPages
Users of the server can have their "normal", non-wiki web pages under ~/public_html
. There is just one thing to note - the server uses SELinux, so if you create a file somewhere, and you mv
it to your public_html
, it may not have the correct SELinux context, and you will need to fix it:
[root@psi materials]# ls --lcontext total 78400 -rw-r--r-- 1 user_u:object_r:user_home_t connell users 80191488 Nov 9 14:50 matsci.ppt [root@psi materials]# chcon -t httpd_user_content_t matsci.ppt [root@psi materials]# ls --lcontext total 78400 -rw-r--r-- 1 user_u:object_r:httpd_user_content_t connell users 80191488 Nov 9 14:50 matsci.ppt