Updates for AniNIX/Password

This commit is contained in:
2025-09-29 16:33:35 -05:00
parent 78af592485
commit 25c9872a0a
8 changed files with 77 additions and 146 deletions

View 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";
?>