: move phpbb to app dir
All checks were successful
ansible-lint / lint-everything (push) Successful in 1m27s

This commit is contained in:
VC
2025-04-04 20:38:30 +02:00
parent 1dafa87b40
commit bcc1551244
13 changed files with 275 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
<?php
// phpBB 3.0.x auto-generated configuration file
// Do not change anything in this file!
$dbms = 'mysqli';
$dbhost = 'localhost';
$dbport = '';
$dbname = '{{ phpbb_maria_database }}';
$dbuser = '{{ phpbb_maria_user }}';
$dbpasswd = '{{ phpbb_maria_password }}';
$table_prefix = 'phpbb_';
$acm_type = 'file';
$load_extensions = '';
libxml_disable_entity_loader(false);
@define('PHPBB_INSTALLED', true);
// @define('DEBUG', true);
// @define('DEBUG_EXTRA', true);
?>