1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-19 01:24:05 +01:00
vichan/inc/instance-config.php

24 lines
459 B
PHP
Raw Normal View History

2010-11-05 01:02:13 +11:00
<?php
2010-11-05 01:02:13 +11:00
/*
* Instance Configuration
* ----------------------
* Edit this file and not config.php for imageboard configuration.
*
* You can copy values from config.php (defaults) and paste them here.
*/
2010-12-18 01:18:03 +11:00
2010-11-05 03:14:33 +11:00
// Database stuff
2010-12-18 01:18:03 +11:00
define('DB_TYPE', 'mysql');
define('DB_SERVER', 'localhost');
define('DB_USER', '');
define('DB_PASSWORD', '');
define('DB_DATABASE', '');
2010-12-01 23:25:39 +11:00
define('ROOT', '/');
2010-12-18 01:18:03 +11:00
2010-11-05 01:02:13 +11:00
// define('FOO', 'bar');
2010-12-18 01:18:03 +11:00
2010-11-05 01:02:13 +11:00
?>