summaryrefslogtreecommitdiff
path: root/config.sample.php
diff options
context:
space:
mode:
authorChristoph Burschka2012-10-30 15:28:52 +0100
committerChristoph Burschka2012-10-30 15:28:52 +0100
commit12f6c2acb29cbea6f41d1152eb27affa358c196f (patch)
treede6a06f62967f9a98db3e8e254cae457536001cd /config.sample.php
parentA version compatible with the stable phpBB3 (diff)
downloadejabberd-auth-php-12f6c2acb29cbea6f41d1152eb27affa358c196f.tar.gz
Refactor to a general, flexible and extensible architecture.
Diffstat (limited to 'config.sample.php')
-rw-r--r--config.sample.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/config.sample.php b/config.sample.php
new file mode 100644
index 0000000..0f1b9fa
--- /dev/null
+++ b/config.sample.php
@@ -0,0 +1,25 @@
+<?php
+
+/* copy this file to config.php */
+
+$config['plugin'] = 'phpbb3';
+$config['log_path'] = __DIR__ . '/logs/';
+
+$config['phpbb3'] = array(
+ 'root_path' => '' /* path to your phpBB3 installation */,
+);
+
+$config['phpbb4'] = array(
+ 'root_path' => '' /* path to your phpBB4 installation */,
+);
+
+$config['drupal7'] = array(
+ 'root_path' => '' /* path to your Drupal 7 installation */,
+ 'site' => 'default' /* site directory */,
+);
+
+$config['drupal8'] = array(
+ 'root_path' => '' /* path to your Drupal 7 installation */,
+ 'site' => 'default' /* site directory */,
+);
+