mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
53 lines
1.5 KiB
PHP
53 lines
1.5 KiB
PHP
<?php
|
|
|
|
// Copy these variables to your config.override.php in a production environment.
|
|
// Change as required.
|
|
|
|
define('SITE_NAME', 'Gazelle');
|
|
define('SITE_HOST', 'localhost');
|
|
define('SITE_LAUNCH_YEAR', 2018);
|
|
|
|
define('SOURCE', 'GZL');
|
|
|
|
define('TMPDIR', '/tmp');
|
|
|
|
define('STORAGE_PATH_TORRENT', '/var/lib/gazelle/torrent');
|
|
define('STORAGE_PATH_RIPLOG', '/var/lib/gazelle/riplog');
|
|
define('STORAGE_PATH_RIPLOGHTML', '/var/lib/gazelle/riploghtml');
|
|
|
|
define('TRACKER_HOST', 'tracker.example.com');
|
|
define('TRACKER_PORT', 12345);
|
|
|
|
define('SQLHOST', '10.0.0.1');
|
|
define('BOT_SERVER', 'irc.example.com');
|
|
|
|
// If your database is on the same host as the PHP interpreter
|
|
define('SQLSOCK', '/var/run/mysqld/mysqld.sock');
|
|
|
|
define('SQLDB', 'thisisfine');
|
|
define('SQLLOGIN', 'thisisfine');
|
|
define('SQLPASS', 'thisisfine');
|
|
|
|
define('SQL_PHINX_USER', 'thisis.phinx');
|
|
define('SQL_PHINX_PASS', 'thisis.phinx');
|
|
|
|
define('SPHINX_HOST', 'sphinx.example.com');
|
|
define('SPHINXQL_HOST', SPHINX_HOST);
|
|
|
|
// If sphinx is running on the same host as the PHP interpreter
|
|
define('SPHINXQL_SOCK', '/var/run/sphinx.sock');
|
|
|
|
define('TRACKER_SECRET', '0123456789abcdef0123456789abcdef01');
|
|
define('TRACKER_REPORTKEY', '0123456789abcdef0123456789abcdef01');
|
|
|
|
define('ENCKEY', 'thisisfine');
|
|
define('SCHEDULE_KEY', 'thisisfine');
|
|
define('RSS_HASH', 'thisisfine');
|
|
define('SEEDBOX_SALT', 'thisisfine');
|
|
define('AVATAR_SALT', 'thisisfine');
|
|
|
|
define('PARANOIA_PREVIEW_USER', 1);
|
|
|
|
define('IMAGE_HOST_BANNED', ['badhost.example.com']);
|
|
define('IMAGE_HOST_RECOMMENDED', ['goodhost.example.com']);
|