So im getting the error 'Forbidden You don't have permission to access / on this server.' when I go to ec2.guildwars2community.com using this config
NameVirtualHost *:80
<VirtualHost *:80>
ServerName ec2.guildwars2community.com
DocumentRoot /opt/bitnami/apps/gw2c/htdocs
Options Indexes MultiViews +FollowSymLinks
</VirtualHost>
However if I just use directory a based setup like below it works ok. If i go to http://107.20.230.123/gw2c/
Alias /gw2c/ "/opt/bitnami/apps/gw2c/htdocs/"
Alias /gw2c "/opt/bitnami/apps/gw2c/htdocs"
<Directory "/opt/bitnami/apps/gw2c/htdocs">
Options Indexes MultiViews +FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>