Apache/2.2.22 Você não tem permissão para acessar/neste servidor erro

Apache/2.2.22 Você não tem permissão para acessar/neste servidor erro

Tentei todas as sugestões sobre permissões que encontrei, mas sem sorte. O Apache parece iniciar normalmente

[ ok ] Restarting web server: apache2 ... waiting ..

O registro de acesso diz

192.168.15.51 - - [12/Feb/2016:04:19:48 -0800] "GET / HTTP/1.1" 403 498 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36"

Registro de erros:

[Fri Feb 12 04:19:48 2016] [error] [client 192.168.15.51] (13)Permission denied: access to / denied

ls -al /var/www:

root@AOScloud:/etc/apache2# ls -la /var/www
total 12
drwxr-xr-x  2 root     root     4096 Feb 12 03:33 .
drwxr-xr-x 13 root     root     4096 Feb 12 03:31 ..
-rwxr-xr-x  1 www-data www-data  177 Feb 12 03:33 index.html

ls -ld /var/www

root@AOScloud:/etc/apache2# ls -ld /var/www
drwxr-xr-x 2 root root 4096 Feb 12 03:33 /var/www

No apache2.conf eu adicionei

DocumentRoot /var/www

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

Estou executando um kernel Debian 4.2.0

Este é o conteúdo de /etc/apache2/sites-available/default conforme solicitado abaixo:

<VirtualHost *:80>
    ServerAdmin webmaster@localhost

    DocumentRoot /var/www
    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <Directory /var/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>

Responder1

Está funcionando agora. Por algum motivo, o usuário www-data estava corrompido... Adicionei um novo usuário www e mudei tudo para este usuário www. Agora funciona...

Responder2

Apache de um pacote baseado em Debian padrão para revisão abaixo:

https://catjcode.com/apache_conf.txt"Configuração padrão do Apache"

https://catjcode.com/apache_site.txt"Site Apache padrão"

Tente uma configuração padrão mais mínima para obter ohttp://192.168.15.1/index.htmlou similar acessível. Em seguida, adicione novamente cada parte necessária da sua configuração.

Outro possível problema na mensagem de log postada:

access to / denied

O servidor pode ser configurado de forma que a tentativa de visualização http://192.168.15.1/seja vista como um índice: índices de diretório Apache ou listagem de arquivos, que geralmente são desativados por padrão. O manipulador padrão index.htmlpode estar sem configuração. Sugira tentar ir diretamente para http://192.168.15.1/index.htmlver se o erro no log é diferente.

Verifique também os links simbólicos, se houver. Suponha que seu site realmente não esteja sendo usado /etc/apache2/sites-available/defaultcomo configuração, existindo um arquivo diferente em uso, anulando qualquer uma de suas alterações. abaixo da configuração típica; observe o link simbólico e o esquema de nomenclatura:

ls /etc/apache2/sites-enabled/ -lah
drwxr-xr-x 2 root root 4.0K Aug 29 11:43 .
drwxr-xr-x 8 root root 4.0K Aug 29 11:40 ..
lrwxrwxrwx 1 root root   35 Aug 29 11:38 000-default.conf -> ../sites-available/000-default.conf

Para ajudar a diagnosticar problemas de permissão: verifique se www-data é usado pelo Apache, inicie o Apache e revise o proprietário do processo. Observe os dados www abaixo:

ps -ef|fgrep apache

root      1495     1  0 Feb16 ?        00:00:00 /usr/sbin/apache2 -k start
www-data  5239  1495  0 09:33 ?        00:00:00 /usr/sbin/apache2 -k start
www-data  5240  1495  0 09:33 ?        00:00:00 /usr/sbin/apache2 -k start

Revise as permissões do sistema de arquivos; exemplo abaixo:

ls -lah /var/www/html/
drwxr-xr-x 6 root     root 4.0K Sep  9 13:30 .
drwxr-xr-x 3 root     root 4.0K Aug 29 11:38 ..
drwxr-xr-x 2 www-data root 4.0K Aug 30 17:56 cgi-bin
drwxr-xr-x 2 www-data root 4.0K Sep  9 13:26 css
drwxr-xr-x 2 www-data root 4.0K Sep  8 12:36 images
drwxr-xr-x 2 www-data root 4.0K Sep  9 10:14 js
-rw-r--r-- 1 www-data root 3.4K Sep  9 13:14 index.html

informação relacionada