Listen 8080
I just switched to XP (from W98), and I had to change
Listen 80
to
Listen 8080
beacause I had the following message:
"make_sock: could not bind to address 0.0.0.0:80"
In my conf file, i've defined
<VirtualHost *:80>
DocumentRoot "C:/Apache2/htdocs/mydir"
ServerName whatever.myserver.com
<Directory "C:/Apache2/htdocs/mydir">
#Options Indexes FollowSymLinks MultiViews
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Any hints about why I had this problem?
|