subdomain einrichten

forquato

New Member
Hallo,

ich betreibe einen ded.Server mit ISPCP als Verwaltungsoberfläche.
Meine Kunden erreichen die webmail-Oberfläche über domain.tld/webmail.
Ich möchte nun, dass es über webmail.domain.tld erreicht wird.
Meine WebMail-Anwendung befindet sich unter /var/www/ispcp/gui/tools/webmail.

Leider funktioniert das bei mir nicht so richtig.

Also:

Ich habe die datei
/etc/apache2/sites-enabled/00_master.conf
bearbeitet und folgendes eingefügt:

Code:
<VirtualHost {BASE_SERVER_IP}:80>
     ServerAdmin     {DEFAULT_ADMIN_ADDRESS}
     DocumentRoot    /var/www/ispcp/gui/tools/webmail
     ServerName      {BASE_SERVER_VHOST}
     ServerAlias     webmail.*
     ErrorLog        /var/log/apache2/users/webmail-error.log
     TransferLog     /var/log/apache2/users/webmail-access.log
     CustomLog       /var/log/apache2/webmail-traf.log traff
     CustomLog       /var/log/apache2/webmail-combined.log combined
     <IfModule mod_fastcgi.c>
            SuexecUserGroup vu2000 vu2000
     </IfModule>
      
     <Directory /var/www/ispcp/gui/tools/webmail>
         Options -Indexes Includes FollowSymLinks MultiViews
         AllowOverride None
         Order allow,deny
         Allow from all
     </Directory>
     <IfModule mod_fastcgi.c>
         ScriptAlias /php4/ /var/www/fcgi/master/
         ScriptAlias /php5/ /var/www/fcgi/master/
         <Directory "/var/www/fcgi/master">
              AllowOverride None
              Options ExecCGI MultiViews -Indexes
              Order allow,deny
              Allow from all
         </Directory>
     </IfModule>
     <IfModule mod_php4.c>
         <Directory /var/www/ispcp/gui/tools/webmail>
             php_admin_value open_basedir "/var/www/ispcp/gui/:/etc/ispcp/:/proc/:/var/www/virtual/:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/
 bin:/usr/local/sbin"
             php_admin_value session.save_path "/var/www/ispcp/gui/phptmp/"
         </Directory>
     </IfModule>
     <IfModule mod_php5.c>
         <Directory /var/www/ispcp/gui/tools/webmail>
             php_admin_value open_basedir "/var/www/ispcp/gui/:/etc/ispcp/:/proc/:/var/www/virtual/:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/
 bin:/usr/local/sbin"
             php_admin_value session.save_path "/var/www/ispcp/gui/phptmp/"
         </Directory>
     </IfModule>
 </VirtualHost>


Wenn ich nun im Browser webmail.einedomain.tld eingebe bekomme ich leider eine Fehlermeldung -> Siehe Screenshot im Anhang.

Für Hilfe bin ich dankbar.
 

Attachments

  • forbid.jpeg
    forbid.jpeg
    27 KB · Views: 156
Back
Top