Ich habe eine ganze Reihe von Domänen auf meinem VPS. Ich habe Postfix konfiguriert und möchte, dass jede Domäne auf die Rainloop-Webmail-Installation zugreifen kann. Ich möchte nicht für jede Domäne eine Subdomäne erstellen, das würde zu viel Zeit in Anspruch nehmen!
Ich habe Folgendes versucht:
# domain: mail.*
# public: /var/www/projects/rainloop
<virtualhost *:80>
ServerAdmin sandrodz@
ServerName mail.*
ServerAlias www.mail.*
#DirectoryIndex index.html
DocumentRoot /var/www/projects/rainloop
#Allow .htaccess files to work
<Directory /var/www/projects/rainloop>
Options FollowSymLinks
AllowOverride All
</Directory>
#Custom log file locations
LogLevel warn
ErrorLog ${APACHE_LOG_DIR}/rainloop_error.log
CustomLog ${APACHE_LOG_DIR}/rainloop_access.log combined
</virtualhost>
Antwort1
Wow, ich habe es herausgefunden. Aber es gibt keine Dokumentation dazu!
ServerAdmin sandrodz@
ServerName mail.example.com
ServerAlias mail.*
Das funktioniert. Serveralias unterstützt also Platzhalter.