22 lines
707 B
PHP
22 lines
707 B
PHP
|
<?php
|
||
|
define('CHIE_DB_DSN', 'mysql:unix_socket=/var/run/mysqld/mysqld.sock;dbname=chie;charset=utf8mb4');
|
||
|
define('CHIE_DB_USER', 'root');
|
||
|
define('CHIE_DB_PASS', '');
|
||
|
|
||
|
define('CHIE_SMTP_HOST', 'smtp.example.com');
|
||
|
define('CHIE_SMTP_PORT', 587);
|
||
|
define('CHIE_SMTP_ENC', 'tls');
|
||
|
define('CHIE_SMTP_USER', 'system@example.com');
|
||
|
define('CHIE_SMTP_PASS', 'toastiscool100');
|
||
|
|
||
|
define('CHIE_CSRF_SECRET', 'some random secret shit');
|
||
|
|
||
|
define('SATORI_HOST', 'localhost');
|
||
|
define('SATORI_PORT', 12345);
|
||
|
define('SATORI_SECRET', 'more secret shit');
|
||
|
|
||
|
define('ANTI_SPAM_KEY', 'secret mewow');
|
||
|
define('ANTI_SPAM_ANSWER', strrev('chie'));
|
||
|
|
||
|
define('GITHUB_SECRET', 'ok secret but long because this one can do bad things');
|