|
楼主 |
发表于 2009-8-19 11:41:21
|
显示全部楼层
现在我的问题已经解决了。具体如下:
通过在终端中使用命令——chcon -R -t httpd_user_content_t public_html/,即可。
在配置个人网站的时候,权限问题会影响我们的最终效果,所以我将截取部分配置内容,供大家共同学习。如下所示:
注意权限问题:
# The path to the end user account ’public_html’ directory must be
# accessible to the webserver userid. This usually means that ~userid
# must have permissions of 711, ~userid/public_html must have permissions
#of 755, and documents contained therein must be world-readable.
# Otherwise, the client will only receive a "403 Forbidden" message.
[root@Fedora /]# useradd test
[root@Fedora /]# passwd test
[root@Fedora root]# su - test
[test@Fedora test]$ pwd
/home/test
[test@Fedora test]$ mkdir public_html
[test@Fedora home]$ chmod 711 test
[test@Fedora test]$ chmod 755 public_html/
在public_html目录下随便建一个index.html网页来测试。 |
|