Hi, I am trying to use LightAdmin with Spring Boot and so far I could not login.
Whether I add or not this line in application.properties:
light:administration:security=false
it keeps asking me the password through HTTP Authentication.
I created a file named users.properties:
#<username>=<SHA-1 of password>,<is-active-user>,<role>
admin=d033e22ae348aeb5660fc2140aec35850c4da997,enabled,ROLE_ADMIN
Where the given hash should be the hash of "admin". Still I cannot login with admin as username and password.
Any idea?