PDA

View Full Version : [ubuntu] Vhost setup problems


chili_666
May 12th, 2009, 02:05 AM
Hello,

quite frankly - I donīt get it.

I have a ubuntu-server running apache2. I already have to virtual hosts setup that work like a breeze. Iīve been trying to setup a third one now, that just doesnīt want to work.

The server should only be reachable in our LAN - no need for fancy tlds or anything. Itīs is just a phone directory for internal use.

Here is whats in my vhost.conf:

<VirtualHost 192.168.1.197:*>
ServerName 192.168.1.197
DirectoryIndex index.html
DocumentRoot /opt/klickTel/KTIN/klickTel
<Directory /opt/klickTel/KTIN/klickTel>
Options Indexes FollowSymlinks MultiViews +ExecCGI
AllowOverride None
Order deny,allow
Allow from all

</Directory>
</VirtualHost>
So, the server should be reachable under 192.168.1.197. The other two are sitting on .198 and .199 respectively.

I followed the tutorial on http://www.64bitjungle.com/tech/apache-virtual-hosts-and-mod_rewrite-on-ubuntu-hardy/ (http://www.64bitjungle.com/tech/apache-virtual-hosts-and-mod_rewrite-on-ubuntu-hardy/)but left out the mod_rewrite stuff.

After that I restarted apache and lo and behold: I get an error message (time-out) in firefox.

Also the install-file tells me to add

Alias /klickTel/ "[TARGETDIR]/klickTel/"
Alias /klicktel/ "[TARGETDIR]/klickTel/"
those two aliases. I have tried adding them to the .conf or even to the httpd.conf - but nothing works.

I am at my wits end - could somebody please push me into the right direction?

Thanks in advance!

Cheers!

Chili

justatemptest
May 12th, 2009, 08:15 AM
After that I restarted apache and lo and behold: I get an error message (time-out) in firefox.

Is apache listening on port 80 on these interfaces? A quick check with netstat will tell you that.