mirror of
https://github.com/php/web-bugs.git
synced 2026-03-24 15:52:09 +01:00
22 lines
483 B
Plaintext
22 lines
483 B
Plaintext
<?php
|
|
|
|
/**
|
|
* Add your local changes here and copy to local_config.php
|
|
*/
|
|
|
|
$site_data = [
|
|
'method' => 'https',
|
|
'url' => 'bugs.php.net',
|
|
'basedir' => '/bugs',
|
|
'email' => 'php-bugs@lists.php.net',
|
|
'doc_email' => 'doc-bugs@lists.php.net',
|
|
'security_email' => 'security@php.net',
|
|
'db' => 'phpbugsdb',
|
|
'db_user' => 'nobody',
|
|
'db_pass' => '',
|
|
'db_host' => 'localhost',
|
|
'patch_tmp' => "{$ROOT_DIR}/uploads/patches/",
|
|
];
|
|
|
|
define('DEVBOX', true);
|