Hallo alle zusammen. Ich schraube seit ein paar Tagen an einer Apache2 Konfiguration rum. Aktuell bekomme ich immer 1 Seite zum Laufen, richte ich die zweite Seite ein, so geht nichts mehrs. Ich suche seit Stunden nach meinem Denkfehler, nur leider komme hier nicht weiter. Kann mir wer vielleicht auf die Sprünge helfen? Config /etc/apache2/ports.conf
1 2 3 4 5 6 7 8 9 10 | Listen *:80 <IfModule ssl_module> Listen 443 </IfModule> <IfModule mod_gnutls.c> Listen 443 </IfModule> |
Config 000-default.conf
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | <VirtualHost *:80> ServerAdmin tobias-plagge@email.de ServerName meinetestumgebung.de ServerAlias *.meinetestumgebung.de DocumentRoot /var/www/meinetestumgebung.de <Directory /var/www/meinetestumgebung.de> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all </Directory> LogLevel info ssl:warn ErrorLog ${APACHE_LOG_DIR}/meinetestumgebung.de-error.log CustomLog ${APACHE_LOG_DIR}/meinetestumgebung.de-access.log combined </VirtualHost> <VirtualHost *:80> ServerAdmin tobias-plagge@email.de ServerName tobias-plagge.de ServerAlias *.tobias-plagge.de DocumentRoot /var/www/tobias-plagge.de <Directory /var/www/tobias-plagge.de> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all </Directory> LogLevel info ssl:warn ErrorLog ${APACHE_LOG_DIR}/tobias-plagge.de-error.log CustomLog ${APACHE_LOG_DIR}/tobias-plagge.de-access.log combined </VirtualHost> |