Nina2: CatchAll Subdomain

Beitrag lesen

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