| View previous topic :: View next topic |
| Author |
Message |
trucker
Joined: 09 Jan 2007
Posts: 2
|
| Posted: Wed Jan 10, 2007 8:41 pm Post subject: Hosting problems |
|
|
| I have attempted to use Virtual hosts in my conf setup. I have attached it here. I only get to one site.. can anyone please take a look at it and see where i screwed it up. please. Thanks in advance |
|
| Back to top |
|
lku homer
Joined: 29 May 2006
Posts: 104
|
| Posted: Wed Jan 10, 2007 11:41 pm Post subject: |
|
|
Code:
NameVirtualHost *:80
<VirtualHost *:80>
ServerName localhost
ServerAdmin webmaster@localhost
DocumentRoot y:/apache2triad/htdocs
ErrorLog logs/error.log
CustomLog logs/access.log common
</VirtualHost>
<VirtualHost *:80>
ServerName www.wizzardadultworld.inettech.org
ServerAlias *.wizzardadultworld.inettech.org
ServerAdmin webmaster@inettech.org
DocumentRoot Y:/apache2triad/htdocs
ErrorLog logs/wizzardadultworld.inettech.org-error.log
CustomLog logs/wizzardadultworld.inettech.org-access.log common
</VirtualHost>
<VirtualHost *:80>
ServerName www.files.inettech.org
ServerAlias *.files.inettech.org
ServerAdmin webmaster@inettech.org
DocumentRoot Y:/apache2triad/htdocs/filehost
ErrorLog logs/files.inettech.org-error.log
CustomLog logs/files.inettech.org.log common
</VirtualHost>
Give this a shot. |
|
| Back to top |
|
trucker
Joined: 09 Jan 2007
Posts: 2
|
| Posted: Thu Jan 11, 2007 12:43 am Post subject: |
|
|
| It is with deep humbleness I say many thanks to you,lku homer. worked like a charm |
|
| Back to top |
|
lku homer
Joined: 29 May 2006
Posts: 104
|
| Posted: Thu Jan 11, 2007 3:41 am Post subject: |
|
|
Really? ...sweet.
I'm not sure if it was the port that was added, or changing the ServerName, but I know that covering all bases is a good way to do it. |
|
| Back to top |
|
| |