Files
archived-web-bugs/local_config.php.sample
Rasmus Lerdorf c3110c33dc - The end of an era - switch "Bogus" to "Not a bug" by popular demand
- Switch back to master
- Add site_method to make it easier to install on non-ssl test sites
2012-01-27 11:48:04 -08:00

23 lines
485 B
Plaintext

<?php
/**
* Add your local changes here and copy to local_config.php
*/
$site_data = array (
'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_extension' => 'mysqli',
'db_user' => 'nobody',
'db_pass' => '',
'db_host' => 'localhost',
'patch_tmp' => "{$ROOT_DIR}/uploads/patches/",
);
define('DEVBOX', true);