Results 1 to 2 of 2
Ok, I have one server, three addresses:
xscape.to
sterling.xscape.to
kari.xscape.to
Now, when I try to access http://sterling.xscape.to I get this . I havn't bother setting up http://kari.xscape.to until I get ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 07-28-2005 #1Just Joined!
- Join Date
- Nov 2002
- Posts
- 40
Apache VirtualNameServers
Ok, I have one server, three addresses:
- xscape.to
sterling.xscape.to
kari.xscape.to
Now, when I try to access http://sterling.xscape.to I get this. I havn't bother setting up http://kari.xscape.to until I get this one working. Anyway, 403 Forbidden... I don't get it.
Here is my vhost.conf.
Here is the directory structure.Code:NameVirtualHost *:80 <VirtualHost *:80> ServerName xscape.to ServerAlias www.xscape.to DocumentRoot /var/www/localhost/htdocs/ </VirtualHost> <VirtualHost *:80> ServerName sterling.xscape.to DocumentRoot /var/www/sterling/ </VirtualHost> <VirtualHost *:80> ServerName kari.xscape.to DocumentRoot /var/www/kari </VirtualHost>
As you may have not noticed, www.xscape.to works perfectly well. Any ideas?Code:Badger www # ls -la total 20 drwxr-xr-x 5 root root 4096 Jul 28 00:02 . drwxr-xr-x 13 root root 4096 Jul 4 03:48 .. drwxr-xr-x 2 root root 4096 Jul 28 00:02 kari drwxr-xr-x 6 root root 4096 Jul 4 03:48 localhost drwxr-xr-x 2 root root 4096 Jul 28 00:02 sterling
- 07-28-2005 #2Just Joined!
- Join Date
- Nov 2002
- Posts
- 40
Fixed...
Well,
fixed everything.Code:<Directory /var/www/sterling/> AllowOverride All Options MultiViews Indexes Includes FollowSymLinks <IfModule mod_access.c> Order allow,deny Allow from all </IfModule> </Directory>


Reply With Quote
