Initial commit

This commit is contained in:
2025-01-06 23:08:30 +04:00
commit 8099df95b5
18 changed files with 574 additions and 0 deletions

25
phpbb/config.php Normal file
View File

@@ -0,0 +1,25 @@
<?php
$dbms = 'phpbb\\db\\driver\\' . getenv('PHPBB_DB_DRIVER');
$dbhost = getenv('PHPBB_DB_HOST');
$dbport = getenv('PHPBB_DB_PORT');
$dbname = getenv('PHPBB_DB_NAME');
$dbuser = getenv('PHPBB_DB_USER');
$dbpasswd = getenv('PHPBB_DB_PASSWD');
$table_prefix = getenv('PHPBB_DB_TABLE_PREFIX');
$phpbb_adm_relative_path = 'adm/';
$acm_type = 'phpbb\\cache\\driver\\file';
@define('PHPBB_INSTALLED', true);
if (getenv('PHPBB_DISPLAY_LOAD_TIME') === 'true') {
@define('PHPBB_DISPLAY_LOAD_TIME', true);
}
if (getenv('PHPBB_DEBUG') === 'true') {
@define('DEBUG', true);
}
if (getenv('PHPBB_DEBUG_CONTAINER') === 'true') {
@define('DEBUG_CONTAINER', true);
}