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/ src/mibewjava/org.mibew.notifier/resources/
mibew.ini mibew.ini
.DS_Store .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. * 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 * Application path on server
*/ */
@ -28,10 +35,10 @@ $webim_encoding = "utf-8";
/* /*
* MySQL Database parameters * MySQL Database parameters
*/ */
$mysqlhost = "localhost"; $mysqlhost = "";
$mysqldb = "webim_db"; $mysqldb = "";
$mysqllogin = "webim_lite"; $mysqllogin = "";
$mysqlpass = "123"; $mysqlpass = "";
$mysqlprefix = ""; $mysqlprefix = "";
$dbencoding = "utf8"; $dbencoding = "utf8";