aboutsummaryrefslogtreecommitdiffstats
path: root/modules/phpbb/templates
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2011-02-15 12:35:28 +0000
committerMichael Scherer <misc@mageia.org>2011-02-15 12:35:28 +0000
commitf673931763b36ce69ae892490648b42ca6422bd7 (patch)
treea24348bb95633d8594d87a3da26f4408cc473477 /modules/phpbb/templates
parent8e20ad403ece52f0419ec83823d933c3e31fd2c8 (diff)
downloadpuppet-f673931763b36ce69ae892490648b42ca6422bd7.tar
puppet-f673931763b36ce69ae892490648b42ca6422bd7.tar.gz
puppet-f673931763b36ce69ae892490648b42ca6422bd7.tar.bz2
puppet-f673931763b36ce69ae892490648b42ca6422bd7.tar.xz
puppet-f673931763b36ce69ae892490648b42ca6422bd7.zip
add config.php management to set the database
Diffstat (limited to 'modules/phpbb/templates')
-rw-r--r--modules/phpbb/templates/config.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/phpbb/templates/config.php b/modules/phpbb/templates/config.php
new file mode 100644
index 00000000..91e1b10e
--- /dev/null
+++ b/modules/phpbb/templates/config.php
@@ -0,0 +1,17 @@
+<?php
+// phpBB 3.0.x auto-generated configuration file
+// // Do not change anything in this file!
+$dbms = 'postgres';
+$dbhost = 'plsql.<%= domain %>';
+$dbport = '';
+$dbname = '<%= database %>';
+$dbuser = '<%= user %>';
+$dbpasswd = '<%= pgsql_password %>';
+$table_prefix = 'phpbb_';
+$acm_type = 'file';
+$load_extensions = '';
+
+@define('PHPBB_INSTALLED', true);
+// @define('DEBUG', true);
+// @define('DEBUG_EXTRA', true);
+?>