Apache: How can I make my localhost on 192.168.1.101 visible from 192.168.1.102?
Posted
by
takpar
on Server Fault
See other posts from Server Fault
or by takpar
Published on 2010-12-24T10:51:33Z
Indexed on
2010/12/24
11:55 UTC
Read the original article
Hit count: 265
Hi,
I've setup a Apache web server on Ubuntu Linux. I can see http://localhost well. But I can't see localhost from other machines in my network using IP address: http://192.168.1.101
I added the lines below to my apache conf:
`Allow from 192.168.1`
but it did not work. It says "the connection has timed out".
what should i do?
PS:
adp@adp-desktop:~$ sudo netstat -ap | grep apache
tcp 0 0 *:www *:* LISTEN 10581/apache2
tcp 0 0 localhost:www localhost:46017 ESTABLISHED 10586/apache2
© Server Fault or respective owner