Inhalt des HTML-Verzeichnis nicht mehr erreichbar!

Apache, Lighttpd, nginx, Cherokee
Post Reply
derpalit
Posts: 16
Joined: 2004-05-05 19:57
 

Inhalt des HTML-Verzeichnis nicht mehr erreichbar!

Post by derpalit »

Hallo,

ich brauche mal eure Hilfe.

Seit heute spielt mein Server irgendwie verrückt. Unter dem Kunden "c12340" sind 4 Domains eingerichtet. Eine Domain kann den Inhalt des HTML-Verzeichnis anzeigen. Bei den restlichen drei bekomme ich einen 403-Fehler, obwohl kein Zugangsschutz existiert. Es befindet sich im HTML-Verzeichnis eine .htaccess-Datei, in der aber nur die Fehlerseiten festgelegt sind. Weitere Eintragungen sind nicht vorhanden.

Sobald ich auf die Domains pinge, bekomme ich eine Antwort mit der richtigen IP-Adresse. Auch die Zonen des Nameserver sind korrekt.

Hier die das Zone-Files von der Domain, bei der ein 403-Fehler angezeigt wird:

Code: Select all

$ORIGIN 123-domain.net.
$TTL 86400
123-domain.net.        IN        SOA        ns.123-webhosting.de. hostmaster.123-webhosting.de. (
                        2004073001
                        10800
                        3600
                        604800
                        86400 )
123-domain.net.      86400   IN   A         217.160.131.68
*.123-domain.net.    86400   IN   A         217.160.131.68
123-domain.net.      86400   IN   MX 10     mail.123-domain.net.
123-domain.net.      86400   IN   NS        ns.123-webhosting.de.
123-domain.net.      86400   IN   NS        ns.schlund.de.
Hier das Zone-File von der Domain, wo der Verzeichnisinhalt korrekt angezeigt wird:

Code: Select all

$ORIGIN 4tz.de.
$TTL 86400
4tz.de.        IN        SOA        ns.123-webhosting.de. hostmaster.123-webhosting.de. (
                        2004073001
                        10800
                        3600
                        604800
                        86400 )
4tz.de.      86400   IN   A         217.160.131.68
*.4tz.de.    86400   IN   A         217.160.131.68
4tz.de.      86400   IN   MX 10     mail.4tz.de.
4tz.de.      86400   IN   NS        ns.123-webhosting.de.
4tz.de.      86400   IN   NS        ns.schlund.de.
Damit Ihr einen Einblick in die httpd.conf bekommt:

Code: Select all

#
# /etc/apache2/httpd.conf
#
# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs-2.0/> for detailed information about
# the directives.

# Based upon the default apache configuration file that ships with apache,
# which is based upon the NCSA server configuration files originally by Rob
# McCool. This file was knocked together by Peter Poeml <poeml+apache@suse.de>.

# If possible, avoid changes to this file. It does mainly contain Include
# statements and global settings that can/should be overridden in the
# configuration of your virtual hosts.


# Overview of include files, chronologically:
#
# httpd.conf
#  |
#  |-- uid.conf  . . . . . . . . . . . . . .  UserID/GroupID to run under
#  |-- server-tuning.conf  . . . . . . . . .  sizing of the server (how many processes to start, ...)
#  |-- sysconfig.d/loadmodule.conf . . . . .  [*] load these modules
#  |-- listen.conf . . . . . . . . . . . . .  IP adresses / ports to listen on
#  |-- mod_log_config.conf . . . . . . . . .  define logging formats
#  |-- sysconfig.d/global.conf . . . . . . .  [*] server-wide general settings
#  |-- mod_status.conf . . . . . . . . . . .  restrict access to mod_status (server monitoring)
#  |-- mod_info.conf . . . . . . . . . . . .  restrict access to mod_info
#  |-- mod_autoindex-defaults.conf . . . . .  defaults for displaying of server-generated directory listings
#  |-- mod_mime-defaults.conf  . . . . . . .  defaults for mod_mime configuration
#  |-- errors.conf . . . . . . . . . . . . .  customize error responses
#  |-- ssl-global.conf . . . . . . . . . . .  SSL conf that applies to default server _and all_ virtual hosts
#  |
#  |-- default-server.conf . . . . . . . . .  set up the default server that replies to non-virtual-host requests
#  |    |--mod_userdir.conf  . . . . . . . .  enable UserDir (if mod_userdir is loaded)
#  |    `--conf.d/apache2-manual?conf  . . .  add the docs ('?' = if installed)
#  |
#  |-- sysconfig.d/include.conf  . . . . . .  [*] your include files
#  |                                             (for each file to be included here, put its name
#  |                                              into APACHE_INCLUDE_* in /etc/sysconfig/apache2)
#  |
#  `-- vhosts.d/ . . . . . . . . . . . . . .  for each virtual host, place one file here
#       `-- *.conf . . . . . . . . . . . . .     (*.conf is automatically included)
#
#
# Files marked [*] are created from sysconfig upon server restart: instead of
# these files, you edit /etc/sysconfig/apache2



#  Filesystem layout:
#
# /etc/apache2/
#  |-- conf.d/
#  |   |-- apache2-manual.conf . . . . . . .  conf that comes with apache2-doc
#  |   |-- mod_php4.conf . . . . . . . . . .  (example) conf that comes with apache2-mod_php4
#  |   `-- ... . . . . . . . . . . . . . . .  other configuration added by packages
#  |-- default-server.conf
#  |-- errors.conf
#  |-- httpd.conf  . . . . . . . . . . . . .  top level configuration file
#  |-- listen.conf
#  |-- magic
#  |-- mime.types -> ../mime.types
#  |-- mod_autoindex-defaults.conf
#  |-- mod_info.conf
#  |-- mod_log_config.conf
#  |-- mod_mime-defaults.conf
#  |-- mod_perl-startup.pl
#  |-- mod_status.conf
#  |-- mod_userdir.conf
#  |-- server-tuning.conf
#  |-- ssl-global.conf
#  |-- ssl.crl/  . . . . . . . . . . . . . .  PEM-encoded X.509 Certificate Revocation Lists (CRL)
#  |-- ssl.crt/  . . . . . . . . . . . . . .  PEM-encoded X.509 Certificates
#  |-- ssl.csr/  . . . . . . . . . . . . . .  PEM-encoded X.509 Certificate Signing Requests
#  |-- ssl.key/  . . . . . . . . . . . . . .  PEM-encoded RSA Private Keys
#  |-- ssl.prm/  . . . . . . . . . . . . . .  public DSA Parameter Files
#  |-- sysconfig.d/  . . . . . . . . . . . .  files that are created from /etc/sysconfig/apache2
#  |   |-- global.conf
#  |   |-- include.conf
#  |   `-- loadmodule.conf
#  |-- uid.conf
#  `-- vhosts.d/ . . . . . . . . . . . . . .  put your virtual host configuration (*.conf) here
#      |-- vhost-ssl.template
#      `-- vhost.template


### Global Environment ######################################################
#
# The directives in this section affect the overall operation of Apache,
# such as the number of concurrent requests.

# run under this user/group id
Include /etc/apache2/uid.conf

# - how many server processes to start (server pool regulation)
# - usage of KeepAlive
Include /etc/apache2/server-tuning.conf

# 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 /var/log/apache2/error_log

# generated from APACHE_MODULES in /etc/sysconfig/apache2
Include /etc/apache2/sysconfig.d/loadmodule.conf

# IP addresses / ports to listen on
Include /etc/apache2/listen.conf

# predefined logging formats
Include /etc/apache2/mod_log_config.conf

# generated from global settings in /etc/sysconfig/apache2
Include /etc/apache2/sysconfig.d/global.conf

# optional mod_status, mod_info
Include /etc/apache2/mod_status.conf
Include /etc/apache2/mod_info.conf

# configuration of server-generated directory listings
Include /etc/apache2/mod_autoindex-defaults.conf

# associate MIME types with filename extensions
TypesConfig /etc/apache2/mime.types
DefaultType text/plain
Include /etc/apache2/mod_mime-defaults.conf

# set up (customizable) error responses
Include /etc/apache2/errors.conf

# global (server-wide) SSL configuration, that is not specific to
# any virtual host
Include /etc/apache2/ssl-global.conf

# forbid access to the entire filesystem by default
<Directory />
    Options None
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>

# use .htaccess files for overriding,
AccessFileName .htaccess
# and never show them
<Files ~ "^.ht">
    Order allow,deny
    Deny from all
</Files>

# List of resources to look for when the client requests a directory
DirectoryIndex index.html index.html.var

### 'Main' server configuration #############################################
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition.  These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
#
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#
Include /etc/apache2/default-server.conf


# Another way to include your own files
#
# The file below is generated from /etc/sysconfig/apache2,
# include arbitrary files as named in APACHE_CONF_INCLUDE_FILES and
# APACHE_CONF_INCLUDE_DIRS
Include /etc/apache2/sysconfig.d/include.conf


### Virtual server configuration ############################################
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs-2.0/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.
#
Include /etc/apache2/vhosts.d/*.conf


# Note: instead of adding your own configuration here, consider
#       adding it in your own file (/etc/apache2/httpd.conf.local)
#       putting its name into APACHE_CONF_INCLUDE_FILES in
#       /etc/sysconfig/apache2 -- this will make system updates
#       easier :)

## CONFIXX

Include /etc/apache2/confixx_mhost.conf

# Dieser Eintrag sollte unbedingt am Ende der Datei bleiben

## /CONFIXX
Hier die confixx_vhost.conf:

Code: Select all

#### CONFIXX APACHE VHOST FILE ####
   ### created Fri Jul 30 05:06:01 2004 ###

NameVirtualHost 82.165.14.147:80
NameVirtualHost 217.160.131.68:80
UseCanonicalName Off
php_admin_flag safe_mode On
php_admin_value safe_mode_exec_dir /home/htdocs/empty/
LogFormat "%V:#:%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-agent}i"" confixx
LogFormat "%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-agent}i"" confixx2
CustomLog |/root/confixx/pipelog.pl confixx

<Directory "/home/htdocs">
  <Files ~ "^.ht">
    deny from all
  </Files>
  AllowOverride None
  AllowOverride Indexes  AuthConfig Limit  FileInfo
  Options None
  Options +FollowSymLinks +Includes
</Directory>

<Directory "/home/htdocs/c12341/html">
  Options -FollowSymLinks -SymLinksIfOwnerMatch
  <IfModule mod_access.c>
    Allow from all
  </IfModule>
</Directory>

<Directory "/home/htdocs/c12342/html">
  Options -FollowSymLinks -SymLinksIfOwnerMatch
  DirectoryIndex index.html index.htm
  <IfModule mod_access.c>
    Allow from all
  </IfModule>
  php_admin_flag engine off
  <Files ~ ".shtml$">
    deny from all
  </Files>
  <Files ~ ".(wml.*|wbmp)$">
    deny from all
  </Files>
  <Files ~ ".(cfm|cfml)$">
    deny from all
  </Files>
  <Files ~ ".(cfm|cfml)$">
    deny from all
  </Files>
</Directory>


<Directory "/home/htdocs/c12341/html/cgi-bin/">
  <IfModule mod_python.c>
    <Files ~ ".py$">
      AddHandler python-program .py
      PythonHandler mod_python.cgihandler
    </Files>
  </IfModule>
</Directory>

<VirtualHost 82.165.14.147:80>
  DocumentRoot /home/htdocs/c12341/html
  CustomLog /home/htdocs/c12341/log/access_log confixx2
  SuexecUserGroup c12341 ftponly
  ScriptAlias /cgi-bin/ /home/htdocs/c12341/html/cgi-bin/
  <IfModule mod_python.c>
    <Files ~ ".py$">
      AddHandler python-program .py
      PythonHandler mod_python.publisher
    </Files>
  </IfModule>
  php_admin_value open_basedir /home/htdocs/c12341/
  php_admin_value file_uploads 1
  php_admin_value upload_tmp_dir /home/htdocs/c12341/phptmp/
</VirtualHost>

<VirtualHost 217.160.131.68:80>
  DocumentRoot /srv/www/confixx/html/gesperrt
</VirtualHost>

<Directory "/home/htdocs/c12340/html/cgi-bin/">
  <IfModule mod_python.c>
    <Files ~ ".py$">
      AddHandler python-program .py
      PythonHandler mod_python.cgihandler
    </Files>
  </IfModule>
</Directory>
<VirtualHost 217.160.131.68:80>
  ServerName www.123-domain.net
  ServerAlias www.123-provider.de 123-domain.net www.4tz.de 123-provider.de 123-webhosting.de  
    www.123-webhosting.de 4tz.de

  DocumentRoot /home/htdocs/c12340/html
  SuexecUserGroup c12340 ftponly
  ScriptAlias /cgi-bin/ /home/htdocs/c12340/html/cgi-bin/
  <IfModule mod_python.c>
    <Files ~ ".py$">
      AddHandler python-program .py
      PythonHandler mod_python.publisher
    </Files>
  </IfModule>
  php_admin_value open_basedir /home/htdocs/c12340/
  php_admin_value file_uploads 1
  php_admin_value upload_tmp_dir /home/htdocs/c12340/phptmp/
</VirtualHost>

<Directory "/home/htdocs/c12341/html/cgi-bin/">
  <IfModule mod_python.c>
    <Files ~ ".py$">
      AddHandler python-program .py
      PythonHandler mod_python.cgihandler
    </Files>
  </IfModule>
</Directory>

<VirtualHost 82.165.14.147:80>
  ServerName www.lingoware.de
  ServerAlias ps-computerservices.de www.ps-computerservices.de www.haddo.de lingoware.de  
    haddo.de ps-computerservice.com www.ps-computerservice.com pscomputerservice.de  
    www.pscomputerservice.de

  DocumentRoot /home/htdocs/c12341/html
  SuexecUserGroup c12341 ftponly
  ScriptAlias /cgi-bin/ /home/htdocs/c12341/html/cgi-bin/
  <IfModule mod_python.c>
    <Files ~ ".py$">
      AddHandler python-program .py
      PythonHandler mod_python.publisher
    </Files>
  </IfModule>
  CustomLog /home/htdocs/c12341/log/access_log confixx2
 php_admin_value open_basedir /home/htdocs/c12341/
  php_admin_value file_uploads 1
  php_admin_value upload_tmp_dir /home/htdocs/c12341/phptmp/
</VirtualHost>

<Directory "/home/htdocs/c12341/html/cgi-bin/">
  <IfModule mod_python.c>
    <Files ~ ".py$">
      AddHandler python-program .py
      PythonHandler mod_python.cgihandler
    </Files>
  </IfModule>
</Directory>

<VirtualHost 217.160.131.68:80>
  ServerName c12341.123-webhosting.de
  DocumentRoot /home/htdocs/c12341/html
  SuexecUserGroup c12341 ftponly
  ScriptAlias /cgi-bin/ /home/htdocs/c12341/html/cgi-bin/
  <IfModule mod_python.c>
    <Files ~ ".py$">
      AddHandler python-program .py
      PythonHandler mod_python.publisher
    </Files>
  </IfModule>
  CustomLog /home/htdocs/c12341/log/access_log confixx2
  php_admin_value open_basedir /home/htdocs/c12341/
  php_admin_value file_uploads 1
  php_admin_value upload_tmp_dir /home/htdocs/c12341/phptmp/
</VirtualHost>

<VirtualHost 217.160.131.68:80>
  ServerName julius-preuss-kolonie.de
  ServerAlias www.julius-preuss-kolonie.de c12342.123-webhosting.de

  DocumentRoot /home/htdocs/c12342/html
  SuexecUserGroup c12342 ftponly
</VirtualHost>
Falls Ihr sonst noch eine Datei benötigt, werde ich Sie hier posten.

Ich hoffe, dass Ihr den Fehler finden könnt :-D


Danke


PS: Die Ordnerrechte sind alle korrekt gesetzt. Zumindest funktionieren diese in anderen Ordnern *ggg*
arty
Userprojekt
Userprojekt
Posts: 729
Joined: 2002-06-12 10:11
Contact:
 

Re: Inhalt des HTML-Verzeichnis nicht mehr erreichbar!

Post by arty »

Logfiles?

bye
arty
duergner
Posts: 923
Joined: 2003-08-20 11:30
Location: Pittsburgh, PA, USA
 

Re: Inhalt des HTML-Verzeichnis nicht mehr erreichbar!

Post by duergner »

Und evtl noch ein

Code: Select all

ls -l
von den entsprechenden Verzeichnissen.
derpalit
Posts: 16
Joined: 2004-05-05 19:57
 

Re: Inhalt des HTML-Verzeichnis nicht mehr erreichbar!

Post by derpalit »

Hier ein Auszug aus der warn-log:

Code: Select all

Jul 28 05:29:40 p15104961 postfix/smtpd[19663]: warning: 69.42.137.176: address not listed for hostname bon.bumperhost.com
Jul 28 06:10:16 p15104961 sshd[19943]: fatal: Timeout before authentication for ::ffff:193.109.140.125
Jul 28 11:06:49 p15104961 postfix/smtpd[21936]: warning: 140.130.84.238: hostname 084238.adm.ncyu.edu.tw verification failed: Host not found
Jul 28 11:23:14 p15104961 postfix/smtpd[22058]: warning: 217.110.64.196: hostname e-web01.motorpresse.de verification failed: Host name has no address
Jul 28 22:50:57 p15104961 postfix/smtpd[27032]: warning: numeric result 65.182.142.155 in address->name lookup for 65.182.142.155
Jul 29 02:52:56 p15104961 sshd[30191]: error: PAM: Authentication failure
Jul 29 02:56:37 p15104961 xinetd[704]: Exiting...
Jul 29 03:17:35 p15104961 xinetd[757]: Exiting...
Jul 29 08:31:54 p15104961 postfix/smtpd[5749]: warning: numeric result 65.182.142.131 in address->name lookup for 65.182.142.131
Jul 29 10:14:22 p15104961 postfix/smtpd[6410]: warning: 69.42.137.195: address not listed for hostname saw.scournethosting.com
Jul 29 15:54:48 p15104961 postfix/smtpd[9339]: warning: unknown[211.158.98.77]: SASL LOGIN authentication failed
Jul 29 15:54:56 p15104961 last message repeated 2 times
Jul 29 15:55:01 p15104961 saslauthd[619]: do_request      : NULL password received
Jul 29 15:55:01 p15104961 postfix/smtpd[9339]: warning: unknown[211.158.98.77]: SASL LOGIN authentication failed
Jul 29 15:55:47 p15104961 last message repeated 7 times
Jul 29 16:39:49 p15104961 postfix/smtpd[9683]: warning: 82.52.136.47: hostname host47-136.pool8252.interbusiness.it verification failed: Host not found
Jul 29 21:16:52 p15104961 postfix/smtpd[12205]: warning: 216.130.190.219: address not listed for hostname mx219.haiche.com
Jul 30 00:37:20 p15104961 postfix/smtpd[13611]: warning: 81.212.211.123: hostname mstr81212-54139.dial-in.ttnet.net.tr verification failed: Host not found
Jul 30 01:22:17 p15104961 xinetd[756]: Exiting...
Jul 30 01:23:25 p15104961 sshd[768]: error: PAM: Authentication failure
Jul 30 01:49:08 p15104961 xinetd[756]: Exiting...
Jul 30 03:00:11 p15104961 postfix/smtp[4416]: warning: mailer loop: best MX host for 123-webhosting.de is local
Jul 30 03:18:01 p15104961 named[1017]: dns_master_load: /var/lib/named/..db:1: empty label
Jul 30 03:18:01 p15104961 named[1017]: zone ./IN: loading master file /var/lib/named/..db: empty label
Jul 30 05:06:01 p15104961 named[7723]: zone 123-webhosting.de/IN: zone serial has gone backwards
Jul 30 09:04:33 p15104961 postfix/smtpd[11031]: warning: 200.151.91.50: hostname SHASTA091050.ig.com.br verification failed: Host not found
Jul 30 12:41:57 p15104961 postfix/smtpd[12483]: warning: 217.110.64.196: hostname e-web01.motorpresse.de verification failed: Host name has no address
Hier die Error-Log des Apache2:

Code: Select all

html, referer: http://www.123-webhosting.de/
[Fri Jul 30 04:49:54 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/
[Fri Jul 30 04:49:54 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/scripts/123_webhosting.css, referer: http://123-webhosting.de/
[Fri Jul 30 04:49:54 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/403.html, referer: http://123-webhosting.de/
[Fri Jul 30 04:49:55 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/
[Fri Jul 30 04:49:55 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/scripts/123_webhosting.css, referer: http://123-webhosting.de/
[Fri Jul 30 04:49:55 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/403.html, referer: http://123-webhosting.de/
[Fri Jul 30 04:50:10 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/scripts/123_webhosting.css, referer: http://www.ps-computerservice.com
[Fri Jul 30 04:50:10 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/403.html, referer: http://www.ps-computerservice.com
[Fri Jul 30 04:50:12 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/scripts/123_webhosting.css, referer: http://www.ps-computerservice.com
[Fri Jul 30 04:50:12 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/403.html, referer: http://www.ps-computerservice.com
[Fri Jul 30 04:56:41 2004] [error] [client 217.228.97.70] File does not exist: /home/htdocs/c12341/html/test.html
[Fri Jul 30 04:57:01 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/
[Fri Jul 30 04:57:01 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/scripts/123_webhosting.css, referer: http://www.123-webhosting.de/
[Fri Jul 30 04:57:01 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/403.html, referer: http://www.123-webhosting.de/
[Fri Jul 30 05:04:26 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/info.php
[Fri Jul 30 05:04:26 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/scripts/123_webhosting.css, referer: http://www.123-webhosting.de/info.php
[Fri Jul 30 05:04:26 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/403.html, referer: http://www.123-webhosting.de/info.php
[Fri Jul 30 05:04:32 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/info.php
[Fri Jul 30 05:04:33 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/scripts/123_webhosting.css, referer: http://123-webhosting.de/info.php
[Fri Jul 30 05:04:33 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/403.html, referer: http://123-webhosting.de/info.php
[Fri Jul 30 05:06:02 2004] [notice] Graceful restart requested, doing restart
[Fri Jul 30 05:06:48 2004] [warn] NameVirtualHost 217.160.131.68:80 has no VirtualHosts
[Fri Jul 30 05:06:49 2004] [notice] Apache/2.0.48 (Linux/SuSE) configured -- resuming normal operations
[Fri Jul 30 05:06:49 2004] [warn] long lost child came home! (pid 7052)
[Fri Jul 30 05:07:20 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/
Hier das Root-Verzeichnis vom Kunden c12340:

Code: Select all

dr-xr-x---   10 c12340   www           104 Jun  6 14:25 .
drwxr-xr-x    9 root     root           94 Jul 30 00:59 ..
drwx------    2 root     root           27 May 12 18:33 .configs
drwxr-xr-x    2 root     root            6 Jul 30 01:03 atd
drwxr-xr-x    2 root     root           62 Jul 18 23:34 backup
drwxr-xr-x    2 c12340   ftponly         6 May 12 18:33 files
drwxr-xr-x    5 c12340   ftponly       137 Jul 30 05:04 html
drwxr-xr-x    3 root     root           33 Jul 27 02:02 log
drwxrwxrwx    2 c12340   ftponly         6 Jul 29 04:36 phptmp
drwxr-xr-x    2 c12340   ftponly         6 May 12 18:33 restore
Hier das HTML-Verzeichnis:

Code: Select all

drwxr-xr-x    5 c12340   ftponly       137 Jul 30 05:04 .
dr-xr-x---   10 c12340   www           104 Jun  6 14:25 ..
-rw-r--r--    1 root     root           84 Jun  6 13:57 .htaccess
-rw-r--r--    1 c12340   ftponly      1268 Jul 30 03:39 401.html
-rw-r--r--    1 c12340   ftponly      1219 Jul 30 03:39 403.html
-rw-r--r--    1 c12340   ftponly      1262 Jul 30 03:39 404.html
drwxr-xr-x    2 c12340   ftponly         6 Jul 30 03:37 cgi-bin
drwxrwxrwx   13 c12340   ftponly      4096 Jun  6 13:57 faq
-rw-r--r--    1 c12340   ftponly      1222 Jul 30 03:39 index.html
-rw-r--r--    1 c12340   ftponly        19 Jul 30 03:39 info.php
drwxr-xr-x    2 c12340   ftponly        31 Jul 30 03:39 scripts
derpalit
Posts: 16
Joined: 2004-05-05 19:57
 

Re: Inhalt des HTML-Verzeichnis nicht mehr erreichbar!

Post by derpalit »

Weiß keiner eine Antwort? :(
Anonymous
 

Re: Inhalt des HTML-Verzeichnis nicht mehr erreichbar!

Post by Anonymous »

wie siehts denn damit aus ?

Code: Select all

[Fri Jul 30 05:04:33 2004] [error] [client 217.228.97.70] client denied by server configuration: /home/htdocs/c12340/html/403.html, referer: http://123-webhosting.de/info.php 
haste irgendwo (vielleicht ganz wo anders) eine regel implementiert, die gewissen hosts den zugriff verbietet, und könnte die evtl. aus dem ruder laufen ?
kostya
Posts: 89
Joined: 2003-01-22 17:23
 

Re: Inhalt des HTML-Verzeichnis nicht mehr erreichbar!

Post by kostya »

Was ist hier drin?

Code: Select all

-rw-r--r--    1 root     root           84 Jun  6 13:57 .htaccess
Warum gehört das dem root?
captaincrunch
Userprojekt
Userprojekt
Posts: 7066
Joined: 2002-10-09 14:30
Location: Dorsten
Contact:
 

Re: Inhalt des HTML-Verzeichnis nicht mehr erreichbar!

Post by captaincrunch »

Warum gehört das dem root?
Warum sollte es nicht root gehören?
DebianHowTo
echo "[q]sa[ln0=aln256%Pln256/snlbx]sb729901041524823122snlbxq"|dc
kostya
Posts: 89
Joined: 2003-01-22 17:23
 

Re: Inhalt des HTML-Verzeichnis nicht mehr erreichbar!

Post by kostya »

CaptainCrunch wrote:
Warum gehört das dem root?
Warum sollte es nicht root gehören?
Stört natürlich nicht, da jeder lesen darf.
derpalit
Posts: 16
Joined: 2004-05-05 19:57
 

Re: Inhalt des HTML-Verzeichnis nicht mehr erreichbar!

Post by derpalit »

Kein ich habe keine Regel erstellt, die irgendeinen Zugriff verbietet. Es passierte auf einmal, ohne dass ich irgendwelche Einstellungen verändert bzw. Programme installiert habe.
Post Reply