[vhffs] Problème avec mon Vhost apache

[ Thread Index | Date Index | More vhffs.org/vhffs Archives ]


Bonjour all!

J'ai un petit problème avec mon Vhost apache, Mon panel s'affiche bien mais pas mes domaines qui sont dans le panel :S

Voici ma config pour le hash:
  # mod_vhost_hash_alias have to be enabled for each virtual host (catch-all)
  #
  HashEnable On

  #
  # Digest algorithm to use:
  # CRC32, ADLER32, MD5, SHA1, SHA256, or other types
  # supported by the module and libmhash
  #

  HashType md5

  #
  # The output encoding (rfc3548) of hash result
  # hexa, base16_low, base16_up, base32_low, base32_up, base64_ufs,
  #
  HashEncoding hexa

  #
  # Number of characters to use to build the document root
  # The hash string is truncated to this length
  #
  HashLimit 6

  #
  # Splitting scheme
  # Specify the size of each chunk of the digest string
  # The last count is taken until the end of string is reached
  #
  HashSplit 2 2 2

  #
  # The base directory used to build the document root
  # (mandatory)
  #
  HashDocumentRootPrefix /data/web

  #
  # A directory added to the final built root
  # (optionnal)
  #
  HashDocumentRootSuffix htdocs

  #
  # A list of host prefix to strip
  # eg: this handle basic web aliasing
  #   http://www.example.com/
  # will point on the same document root than
  #   http://example.com/
  #
  # (optionnal)
  #
  HashAddAliasPrefix www ftp

Mon fichier Vhost:

<VirtualHost *>
      ServerAdmin webmaster@localhost
      DocumentRoot /data/web
      HashEnable On
      <Directory /data/web/>
              Options -ExecCGI Indexes FollowSymLinks +Includes MultiViews
              IndexIgnore */.quota */.*passw* */.htaccess
              IndexOptions NameWidth=*
              AllowOverride All
              order allow,deny
              allow from all
              RewriteEngine on
      </Directory>
      ErrorLog /var/log/apache2/sites-error.log
      LogFormat "%V %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" vhffs
      CustomLog /data/logs/web/incoming/mario/vhffs.log vhffs
      # Possible values include: debug, info, notice, warn, error, crit,
      # alert, emerg.
      LogLevel warn
      ServerSignature On
      Alias /icons/ "/usr/share/apache2/icons/"
      <Directory "/usr/share/apache2/icons">
          Options Indexes MultiViews
          AllowOverride None
          Order allow,deny
          Allow from all
      </Directory>
</VirtualHost>
<VirtualHost *>
        ServerAdmin MON@EMAIL
        ServerName vhffs.virtual-info.eu
        DocumentRoot /usr/share/vhffs/panel/
        DirectoryIndex auth.pl index.pl
        HashEnable Off
        <Directory /usr/share/vhffs/panel/>
                AllowOverride None
                Options ExecCGI FollowSymLinks
                Order allow,deny
                Allow from all
                AddHandler cgi-script .pl
        </Directory>

        ErrorLog /var/log/apache2/panel-error.log

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

        CustomLog /var/log/apache2/panel-access.log combined
        ServerSignature On

</VirtualHost>


Merci d'avance
Greatman


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/