Apache2 403 禁止访问

Apache2 403 禁止访问

我刚刚安装了 apache2,没有我的干净的 ubuntu 12.10 安装(64 位)

我安装了它,将 /etc/apache2/sites-available/default 复制到 /etc/apache2/sites-available/afflicto

以下是“afflicto”网站的内容

<VirtualHost *:80>
ServerAdmin webmaster@localhost

DocumentRoot /home/afflicto/www
<Directory />
    Options FollowSymLinks
    AllowOverride All
</Directory>
<Directory /home/afflicto/www/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    allow from all
</Directory>

ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
    AllowOverride None
    Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
    Order allow,deny
    Allow from all
</Directory>

ErrorLog ${APACHE_LOG_DIR}/error.log

# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn

CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

当然,我打开了 nautilus,导航到用户“afflicto”(也就是我)的主目录,并创建了 www 文件夹以及一些 html 文件。

那我当然会:

sudo a2dissite default && sudo a2ensite afflicto

但不是..

403 Forbidden

我确信这是一个简单的问题,但我对此不太擅长:P

提前致谢。

答案1

如何调试该问题

  • 请将 增加到LogLevel至少info或更好debug
  • 请调查错误日志。
  • 请提供有关网址您想要访问。

最可能的问题

apache httpd 服务器进程以www-data组内用户身份运行www-data。该用户可以访问您的 url 后面的文档吗?

笔记

  1. 你可能还想看看mod_userdir

    该模块允许使用以下方式访问用户特定的目录http://example.com/~user/句法。

  2. 普通网站DocumentRoot不应位于普通用户的主目录下。这可能会导致因轻微配置错误而导致的安全性下降。

相关内容