Hello experts,
I have my custom Apache configuration file httpd.conf as following:
--------------------------
----------
----------
----------
----------
----------
---
Include conf/ica_dir.conf
Port 6450
ErrorDocument 404
http://localhost:6450/html/apache_notfound.html
ErrorDocument 401
http://localhost:6450/html/apache_notfound.html
ErrorDocument 403
http://localhost:6450/html/apache_notfound.html
Timeout 300
BindAddress *
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule expires_module modules/mod_expires.so
LoadModule php4_module modules/php4apache.dll
ServerName localhost
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
AccessFileName .htaccess
<Files ~ "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</Files>
UseCanonicalName Off
ThreadsPerChild 50
LogLevel warn
LogFormat "%h %l %u %t \"%r\" %>s %b" common
CustomLog ../logs/access.log common
PidFile ../logs/httpd.pid
ErrorLog ../logs/error.log
AddType application/x-httpd-php .php
DirectoryIndex index.php index.html index.phtml
Include conf/ica_dir1.conf
--------------------------
----------
----------
----------
----------
----------
---
The problem is that I can open the address
http://localhost:6450 at my computer but other computers that use my computer IP (like
http://192.168.1.10:6450) cannot open this website.
Pls help me how to fix this httpd.conf, thanks very much.
Apache configured properly (or improperly depending on your point of view) can prevent connections from specific IP address or addresses. This is done by the allow/deny statments.