diff options
Diffstat (limited to 'config.sample.php')
-rw-r--r-- | config.sample.php | 25 |
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 */, +); + |