habe mir gerade einen subdomain eingerichtet mit webmail.xxx.de:
diesen habe ich included und den Apache neu gestartet, leider kommt dann immer objekt nicht gefunden. Finde aber keinen fehler.
- <VirtualHost
XXX.XXX.XXX.XXX:80
>
DocumentRoot /home/httpd/vhosts/XXX.de/httpdocs/horde
ServerName webmail
ServerAlias webmail.*
UseCanonicalName Off
<Directory /home/httpd/vhosts/XXX.de/httpdocs/horde>
<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag magic_quotes_gpc off
php_admin_flag safe_mode off
php_admin_value open_basedir "/tmp:/var/log:/usr/share/doc:/usr/share/php:/home/httpd/vhosts/XXX.de/httpdocs/horde:."
php_admin_value include_path "/usr/share/php:."
</IfModule>
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
<IfModule mod_ssl.c>
<VirtualHost
80.237.160.106:443
>
DocumentRoot /home/httpd/vhosts/XXX.de/httpdocs/horde
ServerName webmail
ServerAlias webmail.*
UseCanonicalName Off
SSLEngine on
SSLVerifyClient none
SSLCertificateFile /etc/apache2/httpd.pem
<Directory /home/httpd/vhosts/XXX.de/httpdocs/horde>
<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag magic_quotes_gpc off
php_admin_flag safe_mode off
php_admin_value open_basedir "/tmp:/var/log:/usr/share/doc:/usr/share/php:/home/httpd/vhosts/XXX.de/httpdocs/horde:."
php_admin_value include_path "/usr/share/php:."
</IfModule>
SSLRequireSSL
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
umbroboy