1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-12 01:50:48 +01:00
vichan/inc/instance-config.php
2022-08-29 11:47:47 -04:00

24 lines
494 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
$config['db']['type'] = 'mysql';
$config['db']['server'] = 'localhost';
$config['db']['user'] = '';
$config['db']['password'] = '';
$config['db']['database'] = '';
//$config['root'] = '/';
@include('inc/secrets.php');
?>