mirror of
https://github.com/YunoHost-Apps/agora_ynh.git
synced 2024-09-03 18:06:21 +02:00
11 lines
349 B
PHP
11 lines
349 B
PHP
<?php
|
|
//CONNEXION À LA BDD : CONSTANTES VIDES PAR DEFAUT!
|
|
define("db_host", "localhost");
|
|
define("db_login", "__DB_USER__");
|
|
define("db_password", "__DB_PWD__");
|
|
define("db_name", "__DB_NAME__");
|
|
|
|
//ESPACE DISQUE / NB USERS / SALT
|
|
define("limite_espace_disque", "10737418240");
|
|
define("limite_nb_users", "10000");
|
|
define("AGORA_SALT", "__SALT__");
|