Updates for AniNIX/Password
This commit is contained in:
31
roles/Password/templates/ltb-ssp.config.inc.php.j2
Normal file
31
roles/Password/templates/ltb-ssp.config.inc.php.j2
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
$lang = "en";
|
||||
$show_menu = false;
|
||||
$show_help = false;
|
||||
$logo = "";
|
||||
//$logo = "images/AniNIX.png";
|
||||
$default_action = "change";
|
||||
$notify_on_change = false;
|
||||
$use_sms = false;
|
||||
$ldap_url = "ldap://localhost:389";
|
||||
$ldap_binddn = "{{ secrets['Password']['binduser'] }},{{ ldap['orgdn'] }}";
|
||||
$ldap_bindpw = "{{ secrets['Password']['bindpassword'] }}";
|
||||
$who_change_password = "user";
|
||||
$ldap_base = "{{ ldap['orgdn'] }}";
|
||||
$keyphrase = "";
|
||||
// Requirements
|
||||
$pwd_min_lower = 1;
|
||||
$pwd_min_upper = 1;
|
||||
$pwd_min_digit = 1;
|
||||
$pwd_min_special = 1;
|
||||
$pwd_complexity = 4;
|
||||
$pwd_min_length = 8;
|
||||
$hash = "ssha";
|
||||
// Recaptcha currently doesn't work for changes in SameSite cookie attribute.
|
||||
$use_recaptcha = false;
|
||||
$recaptcha_publickey = "{{ secrets['Password']['recaptcha_publickey'] }}";
|
||||
$recaptcha_privatekey = "{{ secrets['Password']['recaptcha_privatekey'] }}";
|
||||
$recaptcha_theme = "dark";
|
||||
$recaptcha_type = "image";
|
||||
$recaptcha_size = "normal";
|
||||
?>
|
Reference in New Issue
Block a user