mirror of
https://github.com/php/web-bugs.git
synced 2026-03-26 08:42:06 +01:00
- Switch back to master - Add site_method to make it easier to install on non-ssl test sites
23 lines
485 B
Plaintext
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);
|