Ich habe 2 VHosts erstellt
<VirtualHost *:81>
ServerAdmin webmaster@localhost
ServerName srv1.example.com
DocumentRoot /var/www/html/srv1
ErrorLog ${APACHE_LOG_DIR}/srv1-error.log
CustomLog ${APACHE_LOG_DIR}/srv1-access.log combined
</VirtualHost>
<VirtualHost *:82>
ServerAdmin webmaster@localhost
ServerName srv2.example.com
DocumentRoot /var/www/html/srv2
ErrorLog ${APACHE_LOG_DIR}/srv2-error.log
CustomLog ${APACHE_LOG_DIR}/srv2-access.log combined
</VirtualHost>
und beide aktiviert
a2ensite srv1.conf
a2ensite srv2.conf
Wenn ich den Apache neu starte ist trotzdem nur der Port 80 geöffnet.