Any any body provide me with hint why my "virtual host" is not working in 
apache?

I've copied server config files from one computer to another.
I used "meld" to be sure most changes are accurate but when try to access 
virtual host:
I get: Forbidden
You don't have permission to access / on this server.

I don't know where else to look.

In /etc/hosts I have:
127.0.0.1 localhost.localdomain localhost mydomain.ca syscon5
10.0.0.100 www.mydomain.ca

If I comment out: #10.0.0.100 www.mydomain.ca
I can access this domain.

in: modules.d/00_default_settings.conf
# We configure the "default" to be a very restrictive set of features.
<Directory />
   Options FollowSymLinks
   AllowOverride None
   Order deny,allow
   Deny from all
</Directory>

# added below
<Directory "/var/www/localhost/htdocs">
        AllowOverride All
        Order allow,deny
        Allow from all
</Directory>

<FilesMatch "^\.ht">
   Order allow,deny
   Deny from all
</FilesMatch>
I don't know where else to look. I can not access virtual domain on port 80 nor 
on 443
The server is working perfectly on my other computer running the same version of apache. As stated earlier I've compare configuration file with meld so I'm sure there are no mistakes.

--
Joseph

Reply via email to