23 lines
466 B
PHP
23 lines
466 B
PHP
<?php
|
|
|
|
/*
|
|
* Instance Configuration
|
|
* ----------------------
|
|
* Edit this file and not config.php for imageboard configuration.
|
|
*
|
|
* You can copy values from config.php (defaults) and paste them here.
|
|
*/
|
|
|
|
|
|
|
|
// Database stuff
|
|
define('MY_SERVER', '127.0.0.1');
|
|
define('MY_USER', 'imgboard');
|
|
define('MY_PASSWORD', 'DF3uHz4vvhUM6rCq');
|
|
define('MY_DATABASE', 'imgboard');
|
|
|
|
define('ROOT', '/');
|
|
|
|
// define('FOO', 'bar');
|
|
|
|
?>
|