mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-06 01:58:52 +00:00
Deploy on Heroku
This commit is contained in:
parent
d9aea27c75
commit
89842299d7
1 changed files with 23 additions and 0 deletions
23
phpBB/config.php
Normal file
23
phpBB/config.php
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
// phpBB 3.2.x auto-generated configuration file
|
||||
// Do not change anything in this file!
|
||||
|
||||
$url = getenv('JAWSDB_URL');
|
||||
$dbparts = parse_url($url);
|
||||
|
||||
$dbhost = $dbparts['host'];
|
||||
$dbuser = $dbparts['user'];
|
||||
$dbpasswd = $dbparts['pass'];
|
||||
$dbname = ltrim($dbparts['path'],'/');
|
||||
|
||||
$dbms = 'phpbb\\db\\driver\\mysqli';
|
||||
$dbport = '';
|
||||
$table_prefix = 'phpbb_';
|
||||
$phpbb_adm_relative_path = 'adm/';
|
||||
$acm_type = 'phpbb\\cache\\driver\\file';
|
||||
|
||||
@define('DEBUG', true);
|
||||
@define('PHPBB_INSTALLED', true);
|
||||
@define('PHPBB_DISPLAY_LOAD_TIME', true);
|
||||
@define('PHPBB_ENVIRONMENT', 'development');
|
||||
// @define('DEBUG_CONTAINER', true);
|
Loading…
Add table
Reference in a new issue