Apache VHosts ohne IP Adresse / Nur mit Domain Namen

icecoldkilla

Registered User
Hallo,

Ich stehe vor einem Problem :

Ich habe auf meinem Server eine IP Adresse, und möchte nun einstellen, dass beim Aufrufen von domain.de /var/www/1 und beim aufrufen von domain2.de /var/www/2 geladen wird.

Ich habe nur eine IP Adresse, und als Vhost ( <virtualhost domain.de:80> )
geht es nicht.

Ich habe auf meinem Server Debian Sarge 3.1 und keinen Control Panel

MfG

icecoldkilla
 
Das geht auch alles über eine IP:
Code:
<VirtualHost 123.123.123.123:80>
ServerName domain1.de
ServerAlias www.domain1.de
DocumentRoot /var/www/1
</VirtualHost>

<VirtualHost 123.123.123.123:80>
ServerName domain2.de
ServerAlias www.domain2.de
DocumentRoot /var/www/2
</VirtualHost>
 
Ich weiß nicht ob es dir weiterhilft, da ich grad nicht die Zeit und Möglichkeit habe es detailiert in einem Howto wieder zu geben, aber so hab ich es immer gemacht:

### Section 3: Virtual Hosts
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs-2.0/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.
#
# Use name-based virtual hosting.
subdomain.domain.de *:80

<VirtualHost domain:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot /srv/www/htdocs
ServerName xxx.de
</VirtualHost>
##################################
 
Back
Top