1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 23:51:09 +03:00

fixed password validation rules

This commit is contained in:
John Mitchell 2015-06-12 12:04:35 -04:00
parent 8fa6145480
commit ef2247fce0

View File

@ -36,7 +36,7 @@
password_hasLowercase: true, // require a lowercase letter in the password
password_hasUppercase: true, // require an uppercase letter in the password
password_hasNumber: true, // require a number in the password
password_hasSymbol: true, // require one of these symbols to be
password_hasSymbol: false, // require one of these symbols to be
// in the password: -!$%^&*()_+|~=`{}[]:";'<>?,./
session_timeout: 1800, // Number of seconds before an inactive session is automatically timed out and forced to log in again.