phpBB Installation On FreeBSD

First off, get the port with portmanager:
  1. [root@dev ~]# portmanager www/phpbb

This will now install a couple of ports that phpBB depends on:
Now, so that you can access to phpBB you must create an alias (because phpBB installs it in So put this in your httpd.conf file:
  1. Alias /phpbb /usr/local/www/phpBB2/
  2. <Directory "/usr/local/www/phpBB2/">
  3. AllowOverride None
  4. Options None
  5. Order allow,deny
  6. Allow from all
  7. </Directory>