Create default config files and stop indexing actual configs

This commit is contained in:
Dmitriy Simushev 2013-04-08 13:30:52 +00:00
parent cf412e049f
commit 9e9dbf8e2a
3 changed files with 15 additions and 4 deletions

4
.gitignore vendored
View File

@ -7,3 +7,7 @@ src/mibewjava/.idea/workspace.xml
src/mibewjava/org.mibew.notifier/resources/
mibew.ini
.DS_Store
# No index actual configuration files
src/messenger/webim/libs/config.php
src/messenger/tests/server_side/webim/libs/config.php

View File

@ -15,6 +15,13 @@
* limitations under the License.
*/
/*
* IMPORTANT: Before install mibew copy this file to config.php and fill
* it with your own settings!
*/
/*
* Application path on server
*/
@ -28,10 +35,10 @@ $webim_encoding = "utf-8";
/*
* MySQL Database parameters
*/
$mysqlhost = "localhost";
$mysqldb = "webim_db";
$mysqllogin = "webim_lite";
$mysqlpass = "123";
$mysqlhost = "";
$mysqldb = "";
$mysqllogin = "";
$mysqlpass = "";
$mysqlprefix = "";
$dbencoding = "utf8";