Nina2: CatchAll Subdomain

Hi,

mit einem A-Record werden alle *.meinedomain.tld Anfragen zu meinem vserver geleitet. Bei dem habe ich derzeit 5 verschiedene Subdomains eingerichtet für diese Domain, wobei das alles von Hand geschieht in der apache config.
Soweit, sogut... nun habe ich für eine Domain noch mehr vor. Nämlich soll das alles zum selben Verzeichnis gehen:
bla.x.meinedomain.tld
fooo.x.meinedomain.tld
bar.x.meinedomain.tld
Also quasi eine catchall Subdomain: *.x.meinedomain.tld

Für normale Subdomains sieht meine Config so aus:
<VirtualHost *>
        ServerName x.meinedomain.tld
        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/x/
        <Directory />
                Options FollowSymLinks
                AllowOverride All
        </Directory>
        <Directory /var/www/x/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride All
                Order allow,deny
                allow from all
        </Directory>
</VirtualHost>

Wie erkläre ich nun dem Server, dass es auch noch Sachen vor dem x... geben darf?

Danke

  1. echo $begrüßung;

    Also quasi eine catchall Subdomain: *.x.meinedomain.tld

    Mit ServerAlias kann man weitere Namen konfigurieren, auch mit *. Weiterhin ist die erste V-Host-Konfiguration die Default-Konfiguration, die verwendet wird, wenn keine andere passende Konfiguration gefunden werden konnte.

    echo "$verabschiedung $name";

  2. bla.x.meinedomain.tld
    fooo.x.meinedomain.tld
    bar.x.meinedomain.tld
    Also quasi eine catchall Subdomain: *.x.meinedomain.tld

    bla.x.example.com
    fooo.x.example.com
    bar.x.example.com
    Also quasi eine catchall Subdomain: *.x.example.com

    RFC 2606, Abschnitt 3