1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/phpbb_ynh.git synced 2024-09-03 19:56:36 +02:00

Create config.php.default

This commit is contained in:
ericgaspar 2021-06-28 11:33:31 +02:00
parent 49298e3e85
commit f2332964a6
No known key found for this signature in database
GPG key ID: 574F281483054D44

21
conf/config.php.default Normal file
View file

@ -0,0 +1,21 @@
<?php
// phpBB 3.3.x auto-generated configuration file
// Do not change anything in this file!
$dbms = 'mysqli';
$dbhost = 'localhost';
$dbport = '';
$dbname = '__DB_NAME__';
$dbuser = '__DB_NAME__';
$dbpasswd ='__DB_PWD__';
$table_prefix = 'phpbb_';
$acm_type = 'file';
$load_extensions = '';
//@define('PHPBB_INSTALLED', true);
//define('PHPBB_INSTALLED', true);
//@define('PHPBB_DISPLAY_LOAD_TIME', true);
//@define('PHPBB_ENVIRONMENT', 'production');
//@define('DEBUG_CONTAINER', true);
//@define('DEBUG', true);
//@define('EXTRA_DEBUG', true);
?>