vserver und ...de.tf

Soweit ich das sehe, gibt man dort eh keine IP-Infos ein, sondern nur eine Weiterleitungs-URL.
Damit solltest man eigendlich kein Problem haben...

huschi.
 
hm

und wie mach ich das nun das er auch auf Virtueller Server geht ??


also ich bekomme es nicht zum laufen mit webmin oder vhcs!

hast da noch ein tip ??


KELLERMAUS
 
Da ich VHCS nicht kenne, kann ich dazu nicht viel sagen. Aber ich denke, dort sollte es auch reichen einfach einen Kunden anzulegen. Der erhält dann eine Subdomain á la kunde1.mein.vserver.de o.ä. Diese kannst Du dann als URL bei nic.de.tf als Weiterleitungs-URL eintragen.

Oder:
Bei Webmin legst Du einen neuen virtuellen Host an und gibst ihm eine Subdomain Deiner Hauptdomain und trägst diese dann bei nic.de.tf ein.

huschi.
 
hm

ich mal wieder. hab immer noch prbleme !!

dann mal los

1. Domain www.ich1.de.tf und Domain www.ich2.de.tf sollen zum vserver (218.25.130.10)

2. 2 Virtuelle Server eingerichtet

so wenn ich nun www.ich1.de.tf oder www.ich2.de.tf teste komme ich immer aufn Standard-Server!!

nun meine frage wo is das problem??

hab schon alles mögliche getestet aber komme einfach nicht weiter.

hier mal meine httpd.conf

Code:
<VirtualHost _default_:*> 

DocumentRoot /var/www/vhcs-pro/admin/ 

<Directory /var/www/vhcs-pro/admin/> 
Options Indexes Includes FollowSymLinks MultiViews 
AllowOverride None 
Order allow,deny 
Allow from all 
</Directory> 

</VirtualHost> 
NameVirtual Host ich1.de.tf:80 
<VirtualHost ich1.de.tf:80> 

ServerAdmin [email][email protected][/email] 
DocumentRoot /var/www/virtual/ich1.de.tf/htdocs 

ServerName ich1.de.tf 
ServerAlias ich1.de.tf 

ErrorLog /var/www/virtual/ich1.de.tf/logs/ich1.de.tf-error.log 
TransferLog /var/www/virtual/ich1.de.tf/logs/ich1.de.tf-access.log 

CustomLog /var/log/apache/ich1.de.tf-traf.log traff 
CustomLog /var/log/apache/ich1.de.tf-combined.log combined 

Alias /errors /var/www/virtual/ich1.de.tf/errors/ 

ErrorDocument 401 /errors/401/index.php 
ErrorDocument 403 /errors/403/index.php 
ErrorDocument 404 /errors/404/index.php 
ErrorDocument 500 /errors/500/index.php 

ScriptAlias /cgi-bin/ /var/www/virtual/ich1.de.tf/cgi-bin/ 
<Directory /var/www/virtual/ich1.de.tf/cgi-bin> 
AllowOverride None 
Options ExecCGI 
Order allow,deny 
Allow from all 
</Directory> 

<Directory /var/www/virtual/ich1.de.tf/htdocs> 
Options Indexes Includes FollowSymLinks MultiViews 
AllowOverride AuthConfig 
Order allow,deny 
Allow from all 
</Directory> 

</VirtualHost> 
NameVirtual Host ich2.de.tf:80 
<VirtualHost ich2.de.tf:80> 

ServerAdmin [email][email protected][/email] 
DocumentRoot /var/www/virtual/ich2.de.tf/htdocs 

ServerName ich2.de.tf 
ServerAlias ich2.de.tf 

ErrorLog /var/www/virtual/ich2.de.tf/logs/ich2.de.tf-error.log 
TransferLog /var/www/virtual/ich2.de.tf/logs/ich2.de.tf-access.log 

CustomLog /var/log/apache/ich2.de.tf-traf.log traff 
CustomLog /var/log/apache/ich2.de.tf-combined.log combined 

Alias /errors /var/www/virtual/ich2.de.tf/errors/ 

ErrorDocument 401 /errors/401/index.php 
ErrorDocument 403 /errors/403/index.php 
ErrorDocument 404 /errors/404/index.php 
ErrorDocument 500 /errors/500/index.php 

ScriptAlias /cgi-bin/ /var/www/virtual/ich2.de.tf/cgi-bin/ 
<Directory /var/www/virtual/ich2.de.tf/cgi-bin> 
AllowOverride None 
Options ExecCGI 
Order allow,deny 
Allow from all 
</Directory> 

<Directory /var/www/virtual/ich2.de.tf/htdocs> 
Options Indexes Includes FollowSymLinks MultiViews 
AllowOverride AuthConfig 
Order allow,deny 
Allow from all 
</Directory> 

</VirtualHost>
wer kann helfen ??

die KELLERMAUS
 
Last edited by a moderator:
Du hast hier immernoch ein wesentliches Mißverständniss:
Du erhälst bei nic.de.tf keine Domain-Weiterleitung im Sinne von DNS, sondern eine URL-Weiterleitung.
D.h. der Virtualhost '<VirtualHost ich1.de.tf:80>' kann nie angezeigt werden, da die Domain ich1.de.tf nicht auf Deinen Server zeigt.

Du mußt eine Subdomain zur bestehenden Domain Deines Servers einrichten (z.b. ich1.p123456.MeinServerProvider.de) und diese URL dann bei nic.de.tf eintragen.
(Wie die Domain heißt, erfährst Du z.B. mit 'hostname'.)

huschi.
 
Back
Top