1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yourls_ynh.git synced 2024-09-03 20:35:59 +02:00
This commit is contained in:
anmol26s 2020-12-16 01:42:50 +05:30
parent 11009b7da0
commit 556324ab1f

View file

@ -56,8 +56,7 @@ define( 'YOURLS_COOKIEKEY', '__RANDOM__' );
/** Username(s) and password(s) allowed to access the site. Passwords either in plain text or as encrypted hashes
** YOURLS will auto encrypt plain text passwords in this file
** Read http://yourls.org/userpassword for more information */
$yourls_user_passwords = array(
);
$yourls_user_passwords = array();
/** Debug mode to output some internal information
** Default is false for live site. Enable when coding or before submitting a new issue */
@ -91,3 +90,4 @@ $yourls_reserved_URL = array(
//define( 'LDAPAUTH_PORT', '389' );
//define( 'LDAPAUTH_BASE', 'dc=yunohost,dc=org' );
//define( 'LDAPAUTH_USERNAME_FIELD', 'uid');
require_once(dirname(__DIR__) . '/includes/functions-auth.php');