1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/teampass_ynh.git synced 2024-09-03 20:26:37 +02:00
teampass_ynh/conf/settings.php

19 lines
535 B
PHP
Raw Normal View History

<?php
2018-05-22 20:01:55 +02:00
global $lang, $txt, $pathTeampas, $urlTeampass, $pwComplexity, $mngPages;
global $server, $user, $pass, $database, $pre, $db, $port, $encoding;
### DATABASE connexion parameters ###
$server = "localhost";
2021-07-11 12:41:51 +02:00
$user = "__DB_USER__";
$pass = "__DB_PWD__";
$database = "__DB_USER__";
$pre = "teampass_";
$port = 3306;
$encoding = "utf8";
@date_default_timezone_set($_SESSION['settings']['timezone']);
2021-07-11 16:37:26 +02:00
@define('SECUREPATH', '__PATH_SK_FILE__');
if (file_exists("__PATH_SK_FILE__sk.php")) {
require_once "__PATH_SK_FILE__sk.php";
2018-11-21 16:19:57 +01:00
}