403 Proibido ao mudar a raiz do documento Apache2 [closed]

1

Estou executando o Mint 17 e alterei meu arquivo /etc/apache2/sites-available/000-default.conf para o seguinte:

<VirtualHost *:80>
    # The ServerName directive sets the request scheme, hostname and port that
    # the server uses to identify itself. This is used when creating
    # redirection URLs. In the context of virtual hosts, the ServerName
    # specifies what hostname must appear in the request's Host: header to
    # match this virtual host. For the default virtual host (this file) this
    # value is not decisive as it is used as a last resort host regardless.
    # However, you must set it for any further virtual host explicitly.
    #ServerName www.example.com

    ServerAdmin webmaster@localhost
    DocumentRoot /home/vg/www

    # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
    # error, crit, alert, emerg.
    # It is also possible to configure the loglevel for particular
    # modules, e.g.
    #LogLevel info ssl:warn

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

    # For most configuration files from conf-available/, which are
    # enabled or disabled at a global level, it is possible to
    # include a line for only one particular virtual host. For example the
    # following line enables the CGI configuration for this host only
    # after it has been globally disabled with "a2disconf".
    #Include conf-available/serve-cgi-bin.conf
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

A saída de $ ls -al no meu diretório principal:

drwxr-xr-x  2 vg   vg   4096 Aug 29 12:44 www

E dentro do diretório www :

drwxr-xr-x  2 vg vg 4096 Aug 29 12:44 .
drwxr-xr-x 21 vg vg 4096 Aug 29 12:43 ..
-rwxrwxr-x  1 vg vg   22 Aug 29 12:44 info.php

Quando eu aponto o Firefox para localhost / info.php, recebo 403, permissão negada.

info.php contém apenas:

<?php
    phpinfo();
?>

Alguma idéia?

    
por Major Productions 29.08.2014 / 19:10

1 resposta

7

No ubuntu apache, a configuração padrão é não permitir raízes aleatórias de sites virtuais por padrão

Edite /etc/apache2/apache2.conf e as seguintes linhas (de preferência, após o diretório padrão ser bloqueado para que você possa acompanhar os locais que você habilitou para a raiz do site)

<Directory /home/vg/www>
    Options Indexes FollowSymLinks
    AllowOverride None
    Require all granted
</Directory>

Recarregue o apache e o erro deve desaparecer e você deverá ver seu site novamente.

    
por palerdot 29.08.2014 / 19:28