<?php
////////////////////////////////////////////////////////////////////////
//Configuration file for the chess4me command center
////////////////////////////////////////////////////////////////////////
$conf['database_host'] = "localhost";
$conf['database_name'] = "phpchess";
$conf['database_login'] = "phpchess";
$conf['database_pass'] = "phpchess";
$conf['site_name'] = "phpchess";
$conf['site_url'] = "http://ddns.synology.me/phpchess";
$conf['registration_email'] = "jo@ddns.synology.me";
$conf['session_timeout_sec'] = 3600;
$conf['admin_user_name'] = "***";
$conf['admin_password'] = "***";
$conf['new_user_requires_approval'] = true;
$conf['chat_refresh_rate'] = 10;
$conf['absolute_directory_location'] = "/volume1/web/phpchess/";
$conf['avatar_absolute_directory_location'] = "/volume1/web/phpchess/avatars/";
$conf['avatar_image_disk_size_in_bytes'] = 102400;
$conf['avatar_image_width'] = 100;
$conf['avatar_image_height'] = 100;
?>