0 Pluspunkte 0 Minuspunkte

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.

von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

In der Datei

/etc/apache2/ports.conf

findest du den Eintrag

Listen 80

Füge die 2 Zeilen hinzu.

Listen 81
Listen 82
von