first commit

This commit is contained in:
pgmr3
2023-12-22 17:21:31 +01:00
commit dde03b1d27
57 changed files with 6287 additions and 0 deletions

23
config.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
// ------------------------------------------------------------------------------
// © Copyright (с) 2020
// Author: Dmitri Agababaev, d.agababaev@duncat.net
//
// Redistributions and use of source code, with or without modification, are
// permitted that retain the above copyright notice
//
// License: MIT
// ------------------------------------------------------------------------------
//
// © Copyright (с) 2023 License: GPLv3 https://www.gnu.org/licenses/gpl-3.0.txt
// Reinhard Fiebelkorn
// ------------------------------------------------------------------------------
define('APP_ID', 'eb3df56d6f3f11914eb6514c978346f1'); //Application ID in SSO server on Synology NAS with DSM
define('SSO_HOST', 'https://dsm.pgmr2.com');// 'https://dsm.yourserverdomain.toplevel:5001'); //Synology NAS with DSM
define('LOCAL_HOST', 'https://sso.pgmr2.com'); // Your server host
define('REDIRECT_URI', 'https://sso.pgmr2.com'); // not not really used by SSO
define('SESSION_NAME', 'ServerTools'); // Name of session cookie on client browser
define('SESSION_COOKIE_LIFETIME', 90); // 86400); // Lifetime of session cookie on client browser in seconds
?>