1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-25 16:00:22 +01:00
vichan/inc/secrets.example.php
2014-10-04 13:48:52 -07:00

20 lines
521 B
PHP

<?php
/*
* Secrets for configuration
*
* Included from instance-config.php.
*
* Copy this file to secrets.php and edit.
*/
$config['db']['server'] = 'localhost';
$config['db']['database'] = '8chan';
//$config['db']['prefix'] = '';
$config['db']['user'] = 'eightchan-user';
$config['db']['password'] = 'mysecretpassword';
// Consider generating these from the following command.
// $ cat /proc/sys/kernel/random/uuid
$config['secure_trip_salt'] = 'generate-a-uuid';
$config['cookies']['salt'] = 'generate-a-uuid';