I have a server that I'm running apache on and everything is working great. I have my main site + another unrelated site that I made an Alias for in apache2.conf and it works perfectly.

I recently wanted to add another alias so I went into apache2.conf and copied the working alias then chagned the relevent values... unfortunately it does work. After restarting apache2 I get the old 403 page

So the only difference between the two is the name of the alias + the folder they point to. Any ideas?


Here is the .conf alias that is working:
Alias /webmail /var/www/mainsite
<Directory "/var/www/mainsite">
AllowOverride None
Order allow,deny
Allow from all
</Directory>

**NOTE: I changed my default data dir from /var/www to /var/www/public.


Thanks for the help.