#----------------------------------------------------
# phpBB Forum
#----------------------------------------------------
Alias /forum /opt/phpBB2
<Directory /opt/phpBB2>
    AddType application/x-httpd-php .php .php3 .phtml
    Options None
    order deny,allow
    deny from all
    allow from all
    php_admin_value open_basedir /opt/phpBB2/:/tmp/
</Directory>

<Directory /opt/phpbb/cache>
    <Limit GET POST PUT>
         Order Allow,Deny
         Deny from All
    </Limit>
</Directory>

#----------------------------------------------------