Apache2 após atualização de 13.10 a 14.04 [duplicata]

1

Eu estou usando um servidor web (PHP), isso funciona bem até 13.10. Agora atualizei para o 14.04 TLS

O servidor Apache2 (minha impressão) não está no diretório correto \ var \ www

Isso é o que eu vejo:

Index of /

[ICO]   Name    Last modified   Size    Description
Apache/2.4.7 (Ubuntu) Server at luke2 Port 80

Quando estou usando um link , vejo:

Not Found

The requested URL /info.php was not found on this server.

Apache/2.4.7 (Ubuntu) Server at luke2 Port 80

Quando eu olho para / var / www eu vejo info.php disponível

apache2.conf:

# Sets the default security model of the Apache2 HTTPD server. It does
# not allow access to the root filesystem outside of /usr/share and /var/www.
# The former is used by web applications packaged in Debian,
# the latter may be used for local directories served by the web server. If
# your system is serving content from a sub-directory in /srv you must allow
# access here, or in any related virtual host.
<Directory />
        Options FollowSymLinks
        AllowOverride None
        Require all denied
</Directory>

<Directory /usr/share>
        AllowOverride None
        Require all granted
</Directory>

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

Alguma ideia?

    
por user272378 22.04.2014 / 11:28

1 resposta

1

Eu tive um problema semelhante. Eu olhei para o host virtual 000-default. Ele tinha o DocumentRoot como / var / www / html em vez de / var / www. Depois que eu mudei e reiniciei o Apache, tudo estava bem com o mundo novamente.

    
por Salvatore 23.04.2014 / 10:08