diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2018-03-12 22:57:42 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2018-03-12 22:57:42 +0100 |
commit | a8c22829d8e8845cd4ddf4ef8b61a1ed79edfffc (patch) | |
tree | f0ae554b863266fbe523582d1be09216436c7472 /debian/examples/config.php |
Imported from the SVN repository
http://svn.wolffelaar.nl/wsvn/phpbb/branches/jessie/
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'debian/examples/config.php')
-rw-r--r-- | debian/examples/config.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/debian/examples/config.php b/debian/examples/config.php new file mode 100644 index 0000000..59dffa3 --- /dev/null +++ b/debian/examples/config.php @@ -0,0 +1,32 @@ +<?php + +// +// phpBB 3.x configuration file +// + +/* + The Database Management System to use + Any of: mysql, postgres, sqlite + Other DBMSs not supported by Debian's dbconfig-common: mysql4, mssql, oracle, msaccess, mssql-odbc + + Note: use mysql4 only to enable transaction support, which you must enable + in MySQL first. 'mysql' works fine with MySQL 4.x. +*/ +$dbms = 'mysql'; + +/* + In $dbhost, 'localhost' means local UNIX socket connection rather than TCP/IP + to localhost. If you want the latter, write 127.0.0.1 or the equivalent of + localhost.localdomain +*/ +$dbhost = 'localhost'; +$dbname = 'phpbb'; +$dbuser = 'phpbb'; +$dbpasswd = ''; + +$table_prefix = 'phpbb_'; +$acm_type = 'file'; + +$url_forum = 'my.board'; + +define('PHPBB_INSTALLED', true); |