Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 13/09/2017, à 19:43

BXDRAKAR

erreur You don't have permission to access / on this server. apache2

Bonjour
en réalisant une mise à jour, je n'accéde plus au site d'accueil index.php du dossier www
D'où peut provenir l'erreur ?

Cordialement


Merci à tous
Cordialement
La connaissance est pour tous alors partageons

Hors ligne

#2 Le 13/09/2017, à 20:38

Dnij

Re : erreur You don't have permission to access / on this server. apache2

Du fichier de conf très probablement, peux-tu poster ton /etc/apache2/apache2.conf stp ?

Hors ligne

#3 Le 13/09/2017, à 20:41

BXDRAKAR

Re : erreur You don't have permission to access / on this server. apache2

 cat apache2.conf
# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See http://httpd.apache.org/docs/2.4/ for detailed information about
# the directives and /usr/share/doc/apache2/README.Debian about Debian specific
# hints.
#
#
# Summary of how the Apache 2 configuration works in Debian:
# The Apache 2 web server configuration in Debian is quite different to
# upstream's suggested way to configure the web server. This is because Debian's
# default Apache2 installation attempts to make adding and removing modules,
# virtual hosts, and extra configuration directives as flexible as possible, in
# order to make automating the changes and administering the server as easy as
# possible.

# It is split into several files forming the configuration hierarchy outlined
# below, all located in the /etc/apache2/ directory:
#
#       /etc/apache2/
#       |-- apache2.conf
#       |       `--  ports.conf
#       |-- mods-enabled
#       |       |-- *.load
#       |       `-- *.conf
#       |-- conf-enabled
#       |       `-- *.conf
#       `-- sites-enabled
#               `-- *.conf
#
#
# * apache2.conf is the main configuration file (this file). It puts the pieces
#   together by including all remaining configuration files when starting up the
#   web server.
#
# * ports.conf is always included from the main configuration file. It is
#   supposed to determine listening ports for incoming connections which can be
#   customized anytime.
#
# * Configuration files in the mods-enabled/, conf-enabled/ and sites-enabled/
#   directories contain particular configuration snippets which manage modules,
#   global configuration fragments, or virtual host configurations,
#   respectively.
#
#   They are activated by symlinking available configuration files from their
#   respective *-available/ counterparts. These should be managed by using our
#   helpers a2enmod/a2dismod, a2ensite/a2dissite and a2enconf/a2disconf. See
#   their respective man pages for detailed information.
#
# * The binary is called apache2. Due to the use of environment variables, in
#   the default configuration, apache2 needs to be started/stopped with
#   /etc/init.d/apache2 or apache2ctl. Calling /usr/bin/apache2 directly will not
#   work with the default configuration.


# Global configuration
#

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE!  If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the Mutex documentation (available
# at <URL:http://httpd.apache.org/docs/2.4/mod/core.html#mutex>);
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
#ServerRoot "/etc/apache2"

#
# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
#
Mutex file:${APACHE_LOCK_DIR} default

#
# PidFile: The file in which the server should record its process
# identification number when it starts.
# This needs to be set in /etc/apache2/envvars
#
PidFile ${APACHE_PID_FILE}

#
# Timeout: The number of seconds before receives and sends time out.
#
TimeOut 300

#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive on

#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100

#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 5


# These need to be set in /etc/apache2/envvars
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}

#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostnameLookups Off

# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog ${APACHE_LOG_DIR}/error.log

#
# LogLevel: Control the severity of messages logged to the error_log.
# Available values: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the log level for particular modules, e.g.
# "LogLevel info ssl:warn"
#
LogLevel warn

# Include module configuration:
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf

# Include list of ports to listen on
Include ports.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 All
        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>

#<Directory /srv/>
#       Options Indexes FollowSymLinks
#       AllowOverride None
#       Require all granted
#</Directory>




# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives.  See also the AllowOverride
# directive.
#
AccessFileName .htaccess

#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<FilesMatch "^\.ht">
        Require all denied
</FilesMatch>


#
# The following directives define some format nicknames for use with
# a CustomLog directive.
#
# These deviate from the Common Log Format definitions in that they use %O
# (the actual bytes sent including headers) instead of %b (the size of the
# requested file), because the latter makes it impossible to detect partial
# requests.
#
# Note that the use of %{X-Forwarded-For}i instead of %h is not recommended.
# Use mod_remoteip instead.
#
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

# Include of directories ignores editors' and dpkg's backup files,
# see README.Debian for details.

# Include generic snippets of statements
IncludeOptional conf-enabled/*.conf

# Include the virtual host configurations:
IncludeOptional sites-enabled/*.conf

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

Merci à tous
Cordialement
La connaissance est pour tous alors partageons

Hors ligne

#4 Le 13/09/2017, à 20:45

Dnij

Re : erreur You don't have permission to access / on this server. apache2

Pourtant tu as bien un 'Require all granted' sur ton répertoire www...
Plus de détail sur ce qui gène apache dans /var/log/apache2/error.log peut-être ?

Hors ligne

#5 Le 13/09/2017, à 20:46

BXDRAKAR

Re : erreur You don't have permission to access / on this server. apache2

 cat error.log
[Wed Sep 13 07:35:10.191266 2017] [ssl:warn] [pid 3106] AH01906: 127.0.1.1:443:0 server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Wed Sep 13 07:35:10.191341 2017] [ssl:warn] [pid 3106] AH01909: 127.0.1.1:443:0 server certificate does NOT include an ID which matches the server name
[Wed Sep 13 07:35:10.191963 2017] [mpm_prefork:notice] [pid 3106] AH00163: Apache/2.4.18 (Ubuntu) OpenSSL/1.0.2g configured -- resuming normal operations
[Wed Sep 13 07:35:10.191983 2017] [core:notice] [pid 3106] AH00094: Command line: '/usr/sbin/apache2'
[Wed Sep 13 18:55:33.763389 2017] [mpm_prefork:notice] [pid 3106] AH00169: caught SIGTERM, shutting down
[Wed Sep 13 18:55:34.890083 2017] [ssl:warn] [pid 27679] AH01906: 127.0.1.1:443:0 server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Wed Sep 13 18:55:34.890120 2017] [ssl:warn] [pid 27679] AH01909: 127.0.1.1:443:0 server certificate does NOT include an ID which matches the server name
[Wed Sep 13 18:55:35.000235 2017] [:notice] [pid 27679] ModSecurity for Apache/2.9.0 (http://www.modsecurity.org/) configured.
[Wed Sep 13 18:55:35.000286 2017] [:notice] [pid 27679] ModSecurity: APR compiled version="1.5.1"; loaded version="1.5.2"
[Wed Sep 13 18:55:35.000297 2017] [:warn] [pid 27679] ModSecurity: Loaded APR do not match with compiled!
[Wed Sep 13 18:55:35.000307 2017] [:notice] [pid 27679] ModSecurity: PCRE compiled version="8.35 "; loaded version="8.41 2017-07-05"
[Wed Sep 13 18:55:35.000331 2017] [:warn] [pid 27679] ModSecurity: Loaded PCRE do not match with compiled!
[Wed Sep 13 18:55:35.000340 2017] [:notice] [pid 27679] ModSecurity: LUA compiled version="Lua 5.1"
[Wed Sep 13 18:55:35.000348 2017] [:notice] [pid 27679] ModSecurity: YAJL compiled version="2.1.0"
[Wed Sep 13 18:55:35.000357 2017] [:notice] [pid 27679] ModSecurity: LIBXML compiled version="2.9.2"
[Wed Sep 13 18:55:35.000365 2017] [:notice] [pid 27679] ModSecurity: Status engine is currently disabled, enable it by set SecStatusEngine to On.
[Wed Sep 13 18:55:35.066071 2017] [ssl:warn] [pid 27680] AH01906: 127.0.1.1:443:0 server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Wed Sep 13 18:55:35.066099 2017] [ssl:warn] [pid 27680] AH01909: 127.0.1.1:443:0 server certificate does NOT include an ID which matches the server name
[Wed Sep 13 18:55:36.012085 2017] [mpm_prefork:notice] [pid 27680] AH00163: Apache/2.4.18 (Ubuntu) OpenSSL/1.0.2g configured -- resuming normal operations
[Wed Sep 13 18:55:36.012183 2017] [core:notice] [pid 27680] AH00094: Command line: '/usr/sbin/apache2'
[Wed Sep 13 19:09:21.711405 2017] [access_compat:error] [pid 27684] [client 46.226.132.98:44112] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 19:09:25.179526 2017] [access_compat:error] [pid 27684] [client 46.226.132.98:44112] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 19:09:28.001500 2017] [access_compat:error] [pid 27684] [client 46.226.132.98:44112] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 19:09:31.369190 2017] [access_compat:error] [pid 27684] [client 46.226.132.98:44112] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 19:09:39.151659 2017] [access_compat:error] [pid 27687] [client 46.226.132.98:44148] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 19:09:47.568163 2017] [access_compat:error] [pid 27684] [client 46.226.132.98:44153] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 19:12:19.355631 2017] [mpm_prefork:notice] [pid 27680] AH00169: caught SIGTERM, shutting down
[Wed Sep 13 20:27:02.612159 2017] [ssl:warn] [pid 31437] AH01906: 127.0.1.1:443:0 server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Wed Sep 13 20:27:02.612203 2017] [ssl:warn] [pid 31437] AH01909: 127.0.1.1:443:0 server certificate does NOT include an ID which matches the server name
[Wed Sep 13 20:27:03.000557 2017] [:notice] [pid 31437] ModSecurity for Apache/2.9.0 (http://www.modsecurity.org/) configured.
[Wed Sep 13 20:27:03.000604 2017] [:notice] [pid 31437] ModSecurity: APR compiled version="1.5.1"; loaded version="1.5.2"
[Wed Sep 13 20:27:03.000636 2017] [:warn] [pid 31437] ModSecurity: Loaded APR do not match with compiled!
[Wed Sep 13 20:27:03.000645 2017] [:notice] [pid 31437] ModSecurity: PCRE compiled version="8.35 "; loaded version="8.41 2017-07-05"
[Wed Sep 13 20:27:03.000664 2017] [:warn] [pid 31437] ModSecurity: Loaded PCRE do not match with compiled!
[Wed Sep 13 20:27:03.000670 2017] [:notice] [pid 31437] ModSecurity: LUA compiled version="Lua 5.1"
[Wed Sep 13 20:27:03.000676 2017] [:notice] [pid 31437] ModSecurity: YAJL compiled version="2.1.0"
[Wed Sep 13 20:27:03.000681 2017] [:notice] [pid 31437] ModSecurity: LIBXML compiled version="2.9.2"
[Wed Sep 13 20:27:03.000687 2017] [:notice] [pid 31437] ModSecurity: Status engine is currently disabled, enable it by set SecStatusEngine to On.
[Wed Sep 13 20:27:03.070883 2017] [ssl:warn] [pid 31439] AH01906: 127.0.1.1:443:0 server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Wed Sep 13 20:27:03.070912 2017] [ssl:warn] [pid 31439] AH01909: 127.0.1.1:443:0 server certificate does NOT include an ID which matches the server name
[Wed Sep 13 20:27:04.011483 2017] [mpm_prefork:notice] [pid 31439] AH00163: Apache/2.4.18 (Ubuntu) OpenSSL/1.0.2g configured -- resuming normal operations
[Wed Sep 13 20:27:04.011547 2017] [core:notice] [pid 31439] AH00094: Command line: '/usr/sbin/apache2'
[Wed Sep 13 20:27:10.003700 2017] [access_compat:error] [pid 31443] [client 46.226.132.98:51994] AH01797: client denied by server configuration: /var/www/owncloud/
[Wed Sep 13 20:27:10.003894 2017] [access_compat:error] [pid 31443] [client 46.226.132.98:51994] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:27:15.547248 2017] [access_compat:error] [pid 31442] [client 46.226.132.98:51999] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 20:27:19.989008 2017] [access_compat:error] [pid 31442] [client 46.226.132.98:51999] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 20:27:27.752701 2017] [access_compat:error] [pid 31446] [client 46.226.132.98:52007] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 20:33:32.652286 2017] [access_compat:error] [pid 31452] [client 46.226.132.98:52498] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 20:33:37.498100 2017] [access_compat:error] [pid 31452] [client 46.226.132.98:52498] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 20:33:41.909418 2017] [access_compat:error] [pid 31452] [client 46.226.132.98:52498] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 20:52:07.957459 2017] [mpm_prefork:notice] [pid 31439] AH00169: caught SIGTERM, shutting down
[Wed Sep 13 20:52:09.057288 2017] [ssl:warn] [pid 1113] AH01906: 127.0.1.1:443:0 server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Wed Sep 13 20:52:09.057326 2017] [ssl:warn] [pid 1113] AH01909: 127.0.1.1:443:0 server certificate does NOT include an ID which matches the server name
[Wed Sep 13 20:52:10.001117 2017] [:notice] [pid 1113] ModSecurity for Apache/2.9.0 (http://www.modsecurity.org/) configured.
[Wed Sep 13 20:52:10.001163 2017] [:notice] [pid 1113] ModSecurity: APR compiled version="1.5.1"; loaded version="1.5.2"
[Wed Sep 13 20:52:10.001172 2017] [:warn] [pid 1113] ModSecurity: Loaded APR do not match with compiled!
[Wed Sep 13 20:52:10.001180 2017] [:notice] [pid 1113] ModSecurity: PCRE compiled version="8.35 "; loaded version="8.41 2017-07-05"
[Wed Sep 13 20:52:10.001200 2017] [:warn] [pid 1113] ModSecurity: Loaded PCRE do not match with compiled!
[Wed Sep 13 20:52:10.001207 2017] [:notice] [pid 1113] ModSecurity: LUA compiled version="Lua 5.1"
[Wed Sep 13 20:52:10.001213 2017] [:notice] [pid 1113] ModSecurity: YAJL compiled version="2.1.0"
[Wed Sep 13 20:52:10.001220 2017] [:notice] [pid 1113] ModSecurity: LIBXML compiled version="2.9.2"
[Wed Sep 13 20:52:10.001227 2017] [:notice] [pid 1113] ModSecurity: Status engine is currently disabled, enable it by set SecStatusEngine to On.
[Wed Sep 13 20:52:10.068012 2017] [ssl:warn] [pid 1114] AH01906: 127.0.1.1:443:0 server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Wed Sep 13 20:52:10.068040 2017] [ssl:warn] [pid 1114] AH01909: 127.0.1.1:443:0 server certificate does NOT include an ID which matches the server name
[Wed Sep 13 20:52:11.009904 2017] [mpm_prefork:notice] [pid 1114] AH00163: Apache/2.4.18 (Ubuntu) OpenSSL/1.0.2g configured -- resuming normal operations
[Wed Sep 13 20:52:11.009971 2017] [core:notice] [pid 1114] AH00094: Command line: '/usr/sbin/apache2'
[Wed Sep 13 20:52:15.006976 2017] [access_compat:error] [pid 1119] [client 46.226.132.98:53315] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 20:52:19.242932 2017] [access_compat:error] [pid 1119] [client 46.226.132.98:53315] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 20:52:23.380745 2017] [access_compat:error] [pid 1119] [client 46.226.132.98:53315] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 20:52:23.497780 2017] [access_compat:error] [pid 1120] [client 37.168.28.10:60775] AH01797: client denied by server configuration: /var/www/owncloud/index.php
[Wed Sep 13 20:52:25.557000 2017] [access_compat:error] [pid 1120] [client 37.168.28.10:60775] AH01797: client denied by server configuration: /var/www/owncloud/core/css/styles.css
[Wed Sep 13 20:52:25.557068 2017] [access_compat:error] [pid 1120] [client 37.168.28.10:60775] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:25.568201 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/css/inputs.css
[Wed Sep 13 20:52:25.568342 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.105288 2017] [access_compat:error] [pid 1120] [client 37.168.28.10:60775] AH01797: client denied by server configuration: /var/www/owncloud/core/css/header.css
[Wed Sep 13 20:52:26.105368 2017] [access_compat:error] [pid 1120] [client 37.168.28.10:60775] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.136105 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/css/icons.css
[Wed Sep 13 20:52:26.136208 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.157615 2017] [access_compat:error] [pid 1123] [client 37.168.28.10:60794] AH01797: client denied by server configuration: /var/www/owncloud/core/css/fonts.css
[Wed Sep 13 20:52:26.157757 2017] [access_compat:error] [pid 1123] [client 37.168.28.10:60794] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.217770 2017] [access_compat:error] [pid 1127] [client 37.168.28.10:60796] AH01797: client denied by server configuration: /var/www/owncloud/core/css/global.css
[Wed Sep 13 20:52:26.217925 2017] [access_compat:error] [pid 1127] [client 37.168.28.10:60796] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.218602 2017] [access_compat:error] [pid 1118] [client 37.168.28.10:60797] AH01797: client denied by server configuration: /var/www/owncloud/core/css/apps.css
[Wed Sep 13 20:52:26.218793 2017] [access_compat:error] [pid 1118] [client 37.168.28.10:60797] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.238207 2017] [access_compat:error] [pid 1132] [client 37.168.28.10:60795] AH01797: client denied by server configuration: /var/www/owncloud/core/css/fixes.css
[Wed Sep 13 20:52:26.238342 2017] [access_compat:error] [pid 1132] [client 37.168.28.10:60795] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.287657 2017] [access_compat:error] [pid 1120] [client 37.168.28.10:60775] AH01797: client denied by server configuration: /var/www/owncloud/core/css/multiselect.css
[Wed Sep 13 20:52:26.287746 2017] [access_compat:error] [pid 1120] [client 37.168.28.10:60775] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.304980 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/css/mobile.css
[Wed Sep 13 20:52:26.305054 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.327443 2017] [access_compat:error] [pid 1123] [client 37.168.28.10:60794] AH01797: client denied by server configuration: /var/www/owncloud/core/vendor/jquery-ui/themes/base/jquery-ui.css
[Wed Sep 13 20:52:26.327547 2017] [access_compat:error] [pid 1123] [client 37.168.28.10:60794] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.347705 2017] [access_compat:error] [pid 1127] [client 37.168.28.10:60796] AH01797: client denied by server configuration: /var/www/owncloud/core/css/jquery-ui-fixes.css
[Wed Sep 13 20:52:26.347792 2017] [access_compat:error] [pid 1127] [client 37.168.28.10:60796] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.366978 2017] [access_compat:error] [pid 1118] [client 37.168.28.10:60797] AH01797: client denied by server configuration: /var/www/owncloud/core/css/tooltip.css
[Wed Sep 13 20:52:26.367056 2017] [access_compat:error] [pid 1118] [client 37.168.28.10:60797] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.427198 2017] [access_compat:error] [pid 1132] [client 37.168.28.10:60795] AH01797: client denied by server configuration: /var/www/owncloud/core/css/jquery.ocdialog.css
[Wed Sep 13 20:52:26.427290 2017] [access_compat:error] [pid 1132] [client 37.168.28.10:60795] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.447271 2017] [access_compat:error] [pid 1120] [client 37.168.28.10:60775] AH01797: client denied by server configuration: /var/www/owncloud/index.php
[Wed Sep 13 20:52:26.448206 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/vendor/jquery/dist/jquery.min.js
[Wed Sep 13 20:52:26.448349 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.466339 2017] [access_compat:error] [pid 1123] [client 37.168.28.10:60794] AH01797: client denied by server configuration: /var/www/owncloud/core/vendor/jquery-migrate/jquery-migrate.min.js
[Wed Sep 13 20:52:26.466417 2017] [access_compat:error] [pid 1123] [client 37.168.28.10:60794] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.517421 2017] [access_compat:error] [pid 1127] [client 37.168.28.10:60796] AH01797: client denied by server configuration: /var/www/owncloud/core/vendor/jquery-ui/ui/jquery-ui.custom.js
[Wed Sep 13 20:52:26.517600 2017] [access_compat:error] [pid 1127] [client 37.168.28.10:60796] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.518057 2017] [access_compat:error] [pid 1118] [client 37.168.28.10:60797] AH01797: client denied by server configuration: /var/www/owncloud/core/vendor/underscore/underscore.js
[Wed Sep 13 20:52:26.518138 2017] [access_compat:error] [pid 1118] [client 37.168.28.10:60797] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.537756 2017] [access_compat:error] [pid 1132] [client 37.168.28.10:60795] AH01797: client denied by server configuration: /var/www/owncloud/core/vendor/moment/min/moment-with-locales.js
[Wed Sep 13 20:52:26.537870 2017] [access_compat:error] [pid 1132] [client 37.168.28.10:60795] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.617065 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/vendor/handlebars/handlebars.js
[Wed Sep 13 20:52:26.617165 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.637748 2017] [access_compat:error] [pid 1123] [client 37.168.28.10:60794] AH01797: client denied by server configuration: /var/www/owncloud/core/vendor/blueimp-md5/js/md5.js
[Wed Sep 13 20:52:26.637848 2017] [access_compat:error] [pid 1123] [client 37.168.28.10:60794] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.697152 2017] [access_compat:error] [pid 1127] [client 37.168.28.10:60796] AH01797: client denied by server configuration: /var/www/owncloud/core/vendor/bootstrap/js/tooltip.js
[Wed Sep 13 20:52:26.697250 2017] [access_compat:error] [pid 1127] [client 37.168.28.10:60796] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.706800 2017] [access_compat:error] [pid 1118] [client 37.168.28.10:60797] AH01797: client denied by server configuration: /var/www/owncloud/core/vendor/backbone/backbone.js
[Wed Sep 13 20:52:26.706893 2017] [access_compat:error] [pid 1118] [client 37.168.28.10:60797] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.727739 2017] [access_compat:error] [pid 1132] [client 37.168.28.10:60795] AH01797: client denied by server configuration: /var/www/owncloud/core/vendor/es6-promise/dist/es6-promise.js
[Wed Sep 13 20:52:26.727839 2017] [access_compat:error] [pid 1132] [client 37.168.28.10:60795] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.777533 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/vendor/davclient.js/lib/client.js
[Wed Sep 13 20:52:26.777678 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.795406 2017] [access_compat:error] [pid 1123] [client 37.168.28.10:60794] AH01797: client denied by server configuration: /var/www/owncloud/core/vendor/clipboard/dist/clipboard.js
[Wed Sep 13 20:52:26.795474 2017] [access_compat:error] [pid 1123] [client 37.168.28.10:60794] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.877567 2017] [access_compat:error] [pid 1127] [client 37.168.28.10:60796] AH01797: client denied by server configuration: /var/www/owncloud/core/vendor/bowser/src/bowser.js
[Wed Sep 13 20:52:26.877678 2017] [access_compat:error] [pid 1127] [client 37.168.28.10:60796] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.878245 2017] [access_compat:error] [pid 1118] [client 37.168.28.10:60797] AH01797: client denied by server configuration: /var/www/owncloud/core/js/jquery.ocdialog.js
[Wed Sep 13 20:52:26.878340 2017] [access_compat:error] [pid 1118] [client 37.168.28.10:60797] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.937985 2017] [access_compat:error] [pid 1132] [client 37.168.28.10:60795] AH01797: client denied by server configuration: /var/www/owncloud/core/js/oc-dialogs.js
[Wed Sep 13 20:52:26.938076 2017] [access_compat:error] [pid 1132] [client 37.168.28.10:60795] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.957433 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/js/l10n.js
[Wed Sep 13 20:52:26.957536 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.958411 2017] [access_compat:error] [pid 1128] [client 37.168.28.10:60799] AH01797: client denied by server configuration: /var/www/owncloud/core/js/js.js
[Wed Sep 13 20:52:26.958536 2017] [access_compat:error] [pid 1128] [client 37.168.28.10:60799] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:26.975612 2017] [access_compat:error] [pid 1123] [client 37.168.28.10:60794] AH01797: client denied by server configuration: /var/www/owncloud/core/l10n/fr.js
[Wed Sep 13 20:52:26.975701 2017] [access_compat:error] [pid 1123] [client 37.168.28.10:60794] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:27.037057 2017] [access_compat:error] [pid 1118] [client 37.168.28.10:60797] AH01797: client denied by server configuration: /var/www/owncloud/core/js/eventsource.js
[Wed Sep 13 20:52:27.037213 2017] [access_compat:error] [pid 1118] [client 37.168.28.10:60797] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:27.038869 2017] [access_compat:error] [pid 1127] [client 37.168.28.10:60796] AH01797: client denied by server configuration: /var/www/owncloud/core/js/octemplate.js
[Wed Sep 13 20:52:27.038965 2017] [access_compat:error] [pid 1127] [client 37.168.28.10:60796] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:27.137158 2017] [access_compat:error] [pid 1132] [client 37.168.28.10:60795] AH01797: client denied by server configuration: /var/www/owncloud/core/js/config.js
[Wed Sep 13 20:52:27.137263 2017] [access_compat:error] [pid 1132] [client 37.168.28.10:60795] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:27.167302 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/search/js/search.js
[Wed Sep 13 20:52:27.167417 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:27.197439 2017] [access_compat:error] [pid 1128] [client 37.168.28.10:60799] AH01797: client denied by server configuration: /var/www/owncloud/core/js/oc-requesttoken.js
[Wed Sep 13 20:52:27.197553 2017] [access_compat:error] [pid 1128] [client 37.168.28.10:60799] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:27.197794 2017] [access_compat:error] [pid 1123] [client 37.168.28.10:60794] AH01797: client denied by server configuration: /var/www/owncloud/core/js/apps.js
[Wed Sep 13 20:52:27.197896 2017] [access_compat:error] [pid 1123] [client 37.168.28.10:60794] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:27.247601 2017] [access_compat:error] [pid 1118] [client 37.168.28.10:60797] AH01797: client denied by server configuration: /var/www/owncloud/core/js/mimetype.js
[Wed Sep 13 20:52:27.247719 2017] [access_compat:error] [pid 1118] [client 37.168.28.10:60797] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:27.248306 2017] [access_compat:error] [pid 1127] [client 37.168.28.10:60796] AH01797: client denied by server configuration: /var/www/owncloud/core/js/mimetypelist.js
[Wed Sep 13 20:52:27.248402 2017] [access_compat:error] [pid 1127] [client 37.168.28.10:60796] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:27.259755 2017] [access_compat:error] [pid 1132] [client 37.168.28.10:60795] AH01797: client denied by server configuration: /var/www/owncloud/core/vendor/snapjs/dist/latest/snap.js
[Wed Sep 13 20:52:27.259843 2017] [access_compat:error] [pid 1132] [client 37.168.28.10:60795] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:27.277338 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/js/oc-backbone.js
[Wed Sep 13 20:52:27.277415 2017] [access_compat:error] [pid 1121] [client 37.168.28.10:60757] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:27.358128 2017] [access_compat:error] [pid 1128] [client 37.168.28.10:60799] AH01797: client denied by server configuration: /var/www/owncloud/core/js/placeholder.js
[Wed Sep 13 20:52:27.358248 2017] [access_compat:error] [pid 1128] [client 37.168.28.10:60799] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:27.359357 2017] [access_compat:error] [pid 1123] [client 37.168.28.10:60794] AH01797: client denied by server configuration: /var/www/owncloud/core/js/jquery.avatar.js
[Wed Sep 13 20:52:27.359498 2017] [access_compat:error] [pid 1123] [client 37.168.28.10:60794] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:27.368192 2017] [access_compat:error] [pid 1118] [client 37.168.28.10:60797] AH01797: client denied by server configuration: /var/www/owncloud/core/js/backgroundjobs.js
[Wed Sep 13 20:52:27.368272 2017] [access_compat:error] [pid 1118] [client 37.168.28.10:60797] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:27.387292 2017] [access_compat:error] [pid 1127] [client 37.168.28.10:60796] AH01797: client denied by server configuration: /var/www/owncloud/core/js/files/fileinfo.js
[Wed Sep 13 20:52:27.387382 2017] [access_compat:error] [pid 1127] [client 37.168.28.10:60796] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:27.405194 2017] [access_compat:error] [pid 1132] [client 37.168.28.10:60795] AH01797: client denied by server configuration: /var/www/owncloud/core/js/files/client.js
[Wed Sep 13 20:52:27.405270 2017] [access_compat:error] [pid 1132] [client 37.168.28.10:60795] AH01797: client denied by server configuration: /var/www/owncloud/core/templates/403.php
[Wed Sep 13 20:52:35.659375 2017] [access_compat:error] [pid 1132] [client 46.226.132.98:53327] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 20:52:45.276925 2017] [access_compat:error] [pid 1121] [client 46.226.132.98:53334] AH01797: client denied by server configuration: /var/www/compta/compta.php
[Wed Sep 13 21:17:05.836694 2017] [access_compat:error] [pid 1118] [client 46.226.132.98:54632] AH01797: client denied by server configuration: /var/www/compta/compta.php
[Wed Sep 13 21:17:09.713901 2017] [access_compat:error] [pid 1118] [client 46.226.132.98:54632] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 21:30:46.944004 2017] [access_compat:error] [pid 1138] [client 46.226.132.98:55655] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 21:32:40.124287 2017] [access_compat:error] [pid 1132] [client 46.226.132.98:55868] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 21:32:42.039842 2017] [access_compat:error] [pid 1132] [client 46.226.132.98:55868] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 21:38:33.057044 2017] [mpm_prefork:notice] [pid 1114] AH00171: Graceful restart requested, doing restart
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
[Wed Sep 13 21:38:33.183911 2017] [ssl:warn] [pid 1114] AH01906: 127.0.1.1:443:0 server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Wed Sep 13 21:38:33.183949 2017] [ssl:warn] [pid 1114] AH01909: 127.0.1.1:443:0 server certificate does NOT include an ID which matches the server name
[Wed Sep 13 21:38:34.001152 2017] [mpm_prefork:notice] [pid 1114] AH00163: Apache/2.4.18 (Ubuntu) OpenSSL/1.0.2g configured -- resuming normal operations
[Wed Sep 13 21:38:34.001185 2017] [core:notice] [pid 1114] AH00094: Command line: '/usr/sbin/apache2'
[Wed Sep 13 21:38:37.258357 2017] [access_compat:error] [pid 2974] [client 46.226.132.98:56239] AH01797: client denied by server configuration: /var/www/
[Wed Sep 13 21:38:39.972353 2017] [access_compat:error] [pid 2974] [client 46.226.132.98:56239] AH01797: client denied by server configuration: /var/www/

Merci à tous
Cordialement
La connaissance est pour tous alors partageons

Hors ligne

#6 Le 14/09/2017, à 09:54

Dnij

Re : erreur You don't have permission to access / on this server. apache2

'Client denied by server configuration' = ton client apache te refuse l'accès.
Il faut que tu trouves dans quel fichier de conf tu dois mettre un 'Require all granted'

Hors ligne

#7 Le 14/09/2017, à 14:43

HPIR40

Re : erreur You don't have permission to access / on this server. apache2

Tu as eu ce probleme suite à une mise à jour, mais une mise à jour de quoi?

Hors ligne