mirror of
https://github.com/php/web-bugs.git
synced 2026-04-24 07:58:03 +02:00
21 lines
407 B
Plaintext
21 lines
407 B
Plaintext
<?php
|
|
|
|
/**
|
|
* Add your local changes here and copy to local_config.php
|
|
*/
|
|
|
|
$site_data = array (
|
|
'url' => 'bugs.php.net',
|
|
'basedir' => '/bugs',
|
|
'email' => 'php-bugs@lists.php.net',
|
|
'security_email' => 'security@php.net',
|
|
'db' => 'phpbugsdb',
|
|
'db_extension' => 'mysqli',
|
|
'db_user' => 'nobody',
|
|
'db_pass' => '',
|
|
'db_host' => 'localhost',
|
|
'patch_tmp' => '/tmp/patches/',
|
|
);
|
|
|
|
define('DEVBOX', true);
|