I'm resetting up my 2nd server but the old server is running old versions and I can't just copy and paste.
I've been working on the DNS server section for a few days. It would have been faster had I used abc.com instead of www.abc.com
Now I have both of the conditions right (I think). I have static IP's and abc.com is a virtual host.
The next step is to add www.abc.com/rock
Now I'm getting:
Forbidden
You don't have permission to access /rock on this server.
I tried to follow the same idea as the old server.
In /etc/apache2/modules.d/00_default_setting.conf, I have:
alias /rock /var/www/rock
<Directory "/var/www/rock">
Options -All -Multiviews
<IfModule mod_access.c>
Order allow,deny
Allow from all
</IfModule>
</Directory>
What am I doing wrong?