Hello-
Ive searched for several hours trying to find my issue with no luck so
far.
I have a linux apache server (running a few virtual servers both using
80 and 443 ports) on the net. Users outside my network can access
pages just fine, however if Im
at home and try to access the pages on the linux server itself (or my
other servers
at home) most of the pages arent accessable, just the '
domain.com'
root is,
nothing under it.
The only thing that seems to work is the
mydomain.com address, which I
get because
thats the one in my /etc/hosts file, but if I try to do:
mydomain.com/test
I get a 'cannot connect to
mydomain.com/test' message
At this point Im unsure whats wrong with my httpd.conf file?
Listen *:80
Listen *:443
<Directory "/home/http/mydomain">
Options Indexes FollowSymLinks ExecCGI
AllowOverride None
Order allow,deny
Allow from all
<LimitExcept GET POST>
</LimitExcept>
</Directory>
# I shouldnt even need this one should I? I was trying it out:
<Directory "/home/http/mydomain/test">
Options Indexes FollowSymLinks ExecCGI
AllowOverride None
Order allow,deny
Allow from all
<LimitExcept GET POST>
</LimitExcept>
</Directory>
My VirtualHost section is setup as follows (I will eventually be using
SSL on this
domain as well, but for now, just 80):
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot /home/http/mydomain
ErrorLog logs/mydomain_error_log
ServerName
www.mydomain.com
ServerAlias
mydomain.com
ScriptAlias /cgi-bin/ "/home/http/mydomain/cgi-bin/"
TransferLog logs/access_mydomain
</VirtualHost>
Can anyone point me as to whats wrong with my configuration?