You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
705 B
PHTML
28 lines
705 B
PHTML
3 years ago
|
<?php
|
||
|
|
||
|
// This file contains all variables needed by other php scripts
|
||
|
$LogRelativePath = 'logs/';
|
||
|
$ShardName = 'MyShard';
|
||
|
$ShardId = '501';
|
||
|
|
||
|
// ----------------------------------------------------------------------------------------
|
||
|
// Variables for nel database access
|
||
|
// ----------------------------------------------------------------------------------------
|
||
|
|
||
|
// where we can find the mysql database
|
||
|
$DBHost = 'localhost';
|
||
|
$DBUserName = 'USER';
|
||
|
$DBPassword = 'PASSWORD';
|
||
|
$DBName = 'nel';
|
||
|
|
||
|
$RingDBUserName = 'RING_USER';
|
||
|
$RingDBName = 'ring';
|
||
|
$RingDBPassword = 'RING_PASS';
|
||
|
|
||
|
$AcceptUnknownUser = true;
|
||
|
$AutoCreateRingInfo = true;
|
||
|
|
||
|
$RocketChatHook = '';
|
||
|
$RocketChatServer = '';
|
||
|
|