khanat-opennel-code/code/web/todo_cfg/login/config.php

28 lines
871 B
PHP
Raw Normal View History

<?php
// This file contains all variables needed by other php scripts
2014-04-22 19:02:34 +00:00
$LogRelativePath = 'logs/';
// ----------------------------------------------------------------------------------------
// Variables for nel database access
// ----------------------------------------------------------------------------------------
// where we can find the mysql database
$DBHost = "localhost";
$DBUserName = "shard";
$DBPassword = "";
$DBName = "nel";
$RingDBUserName = "shard";
$RingDBName = "ring_open";
$RingDBPassword = "";
// If true, the server will add automatically unknown user in the database
// (in nel.user, nel.permission, ring.ring_user and ring.characters
2014-04-22 19:02:34 +00:00
$AcceptUnknownUser = false;
// if true, the login service automaticaly create a ring user and a editor character if needed
$AutoCreateRingInfo = true;
2014-04-22 19:02:34 +00:00
?>