mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
87 lines
No EOL
1.6 KiB
Text
87 lines
No EOL
1.6 KiB
Text
<?php
|
|
|
|
/* ### Database configuration ### */
|
|
|
|
/*
|
|
* The host on which the database is located.
|
|
*
|
|
* Default value: localhost
|
|
*/
|
|
define("DB_HOST", "localhost");
|
|
|
|
/*
|
|
* The database username.
|
|
*
|
|
* Default value: flexisip_rw
|
|
*/
|
|
define("DB_USER", "flexisip_rw");
|
|
|
|
/*
|
|
* The database user's password.
|
|
*
|
|
* Default value:
|
|
*/
|
|
define("DB_PASSWORD", "");
|
|
|
|
/*
|
|
* The name of the database.
|
|
*
|
|
* Default value: flexisip
|
|
*/
|
|
define("DB_NAME", "flexisip");
|
|
|
|
/*
|
|
* The name of the accounts table.
|
|
*
|
|
* Default value: accounts
|
|
*/
|
|
define("ACCOUNTS_DB_TABLE", "accounts");
|
|
|
|
/*
|
|
* The name of the accounts_algo table.
|
|
*
|
|
* Default value: passwords
|
|
*/
|
|
define("ACCOUNTS_ALGO_DB_TABLE", "passwords");
|
|
|
|
/*
|
|
* The name of the aliases table.
|
|
* It is used to store links between an alias (phone number, facebook id, google email, ...) and a SIP address
|
|
*
|
|
* Default value: aliases
|
|
*/
|
|
define("ALIAS_DB_TABLE", "aliases");
|
|
|
|
/*
|
|
* The name of the devices table.
|
|
* It is used to store hardware information about devices running linphone
|
|
*
|
|
* Default value: devices
|
|
*/
|
|
define("DEVICES_DB_TABLE", "devices");
|
|
|
|
/*
|
|
* The name of the sms table.
|
|
* It is used to keep track of sent SMS
|
|
*
|
|
* Default value: sms
|
|
*/
|
|
define("SMS_DB_TABLE", "sms");
|
|
|
|
/*
|
|
* The name of the inapp table.
|
|
* It is used to store informations about in-app purchases, accounts expiration, etc...
|
|
*
|
|
* Default value: inapp_purchases
|
|
*/
|
|
define("INAPP_DB_TABLE", "inapp_purchases");
|
|
|
|
/*
|
|
* The delay in minutes before test account expiration.
|
|
* It is used to delete old test accounts from database;
|
|
*
|
|
* Default value: 180
|
|
*/
|
|
define("EXPIRATION_DELAY", 180);
|
|
|
|
?> |