Files
forum/Settings.php
2024-11-23 15:17:05 +07:00

55 lines
3.0 KiB
PHP

<?php
/******************************************************************************
* Settings.php *
*******************************************************************************
* SMF: Simple Machines Forum *
* Open-Source Project Inspired by Zef Hemel (zef@zefhemel.com) *
* =========================================================================== *
* Software Version: SMF 1.0 *
*******************************************************************************
* This program is free software; you may redistribute it and/or modify it *
* under the terms of the provided license as published by Lewis Media. *
* *
* This program is distributed in the hope that it is and will be useful, *
* but WITHOUT ANY WARRANTIES; without even any implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
* See the "license.txt" file for details of the Simple Machines license. *
* The latest version can always be found at http://www.simplemachines.org. *
******************************************************************************/
########## Maintenance ##########
# Note: If $maintenance is set to 2, the forum will be unusable! Change it to 0 to fix it.
$maintenance = 0; # Set to 1 to enable Maintenance Mode, 2 to make the forum untouchable. (you'll have to make it 0 again manually!)
$mtitle = 'Извините, форум временно закрыт'; # Title for the Maintenance Mode message.
$mmessage = 'Мы тут шаманим немного. Скоро всё будет. Быстрее, лучше и всё такое'; # Description of why the forum is in maintenance mode.
########## Forum Info ##########
$mbname = 'www.rock.ru'; # The name of your forum.
$language = 'russian'; # The default language file set for the forum.
$boardurl = 'http://192.168.201.100/forum'; # URL to your forum's folder. (without the trailing /!)
$boarddir = '/var/www/rock/forum';
$sourcedir = '/var/www/rock/forum/Sources';
$webmaster_email = 'noreply@rock.ru'; # Email address to send emails from. (like noreply@yourdomain.com.)
$cookiename = 'SMFCookie10'; # Name of the cookie to set for authentication.
//$mongo_server = "mongodb://10.152.69.6:27017/?replicaSet=rock0";
$memcached_host = 'memcached';
$memcached_port = 11211;
$recaptcha_secret = '6LfbSRUUAAAAAM4goUyXz9gB21cfIHL0ZhiQ6doM';
$recaptcha_site_key = '6LfbSRUUAAAAAN1TtRVmVsHw8NKWe5w50fzjyK3U';
########## Database Info ##########
#$db_server = '127.0.0.1:3306';
$db_server = 'mysql';
$db_name = 'rock';
$db_user = 'root';
$db_passwd = '';
$db_prefix = 'smf_';
$db_persist = 0;
$db_error_send = 1;
$db_last_error = 1353665424;
?>