9
Indiquez l’intérêt que vous portez à cette question
-1

Apache (error.log) File does not exist. Pourtant c’est faux !

Salut,

2834 lignes d’erreurs, :013 juste pour avoir cliquer sur "ajouter des plugins", je ne vous dit pas pour le reste ...

# tail -f /var/log/apache2/error.log[error] [client 2.y.y.y] File does not exist: /var/www/mon_domaine.com/ecrire/'http

:/var/www/mon_domaine.com# ls -la
drwxr-xr-x 22 www-data www-data    4096 15 mai   00:31 ecrire

Ma configuration apache.

:/etc/apache2/sites-available# ll
total 28
drwxr-xr-x 2 root root 4096  2 juin  16:00 .
drwxr-xr-x 9 root root 4096 29 mai   09:27 ..
-rw-r--r-- 1 root root  931  2 juin  16:00 default
-rw-r--r-- 1 root root 7251  1 avril 09:13 default-ssl
-rw-r--r-- 1 root root  182 28 mai   20:30 nodnsuse
-rw-r--r-- 1 root root 1576  2 juin  16:00 mon_domaine.com
:/etc/apache2/sites-available#

Mon site.

cat /etc/apache2/sites-available/mon_domaine.com

NameVirtualHost 91.121.x.x:80

<VirtualHost 91.121.x.x:80>
        ServerAdmin bjm@mon_domaine.com
        ServerName www.mon_domaine.com
        ServerAlias  mon_domaine.com mon_domaine1.com mon_domaine2.com
        DocumentRoot /var/www/mon_domaine.com/
        <Directory />
                Options FollowSymLinks
                AllowOverride None
        </Directory>
        <Directory /var/www/mon_domaine.com/>
#                Options Indexes FollowSymLinks MultiViews
                Options -Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
#                allow from all
                allow from 2.y.y.y
                allow from 91.121.x.x
        </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 /var/log/apache2/error.log

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

        CustomLog /var/log/apache2/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options -Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 2.y.y.y
        Allow from 91.121.x.x
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>
</VirtualHost>
:/etc/apache2/sites-available#

Pourquoi ces dizaines de milliers de lignes d’erreurs ?

[error] [client 2.y.y.y] File does not exist : /var/www/mon_domaine.com/ecrire/’http:

Merci pour les pistes à venir ...

Je vous en serre cinq ...