1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/moncycle_ynh.git synced 2024-09-03 19:46:16 +02:00
moncycle_ynh/conf/config.php

30 lines
608 B
PHP
Raw Normal View History

2023-01-19 20:02:20 +01:00
<?php
/* moncycle.app
**
** licence Creative Commons CC BY-NC-SA
**
** https://www.moncycle.app
** https://github.com/jean-io/moncycle.app
*/
2024-01-31 06:44:26 +01:00
define("APP_URL", "__DOMAIN____PATH__");
2023-01-20 17:52:32 +01:00
define("DB_HOST", "localhost");
2023-01-23 12:59:09 +01:00
define("DB_ID", "__DB_USER__");
define("DB_NAME", "__DB_NAME__");
2023-01-19 20:02:20 +01:00
define("DB_PORT", 3306);
2023-01-20 17:06:13 +01:00
define("DB_PASSWORD", "__DB_PWD__");
2023-01-19 20:02:20 +01:00
2023-01-20 17:52:32 +01:00
define("SMTP_HOST", "localhost");
2023-01-19 20:02:20 +01:00
define("SMTP_PORT", 25);
define("SMTP_MAIL", "__APP__@__DOMAIN__");
define("SMTP_PASSWORD", "");
define("CREATION_COMPTE", true);
define("CONNEXION_COMPTE", true);
define("CSV_SEP", ";");
2024-02-21 04:00:58 +01:00
define("PHP_SECURE_COOKIES", true);