sasanrose / phpredmin

Yet another web interface for Redis
BSD 3-Clause "New" or "Revised" License
404 stars 96 forks source link

Cannot change default password #88

Closed aconital closed 7 years ago

aconital commented 7 years ago

I installed phpredmin by adding your instruction to my docker-compose.yml file. However -PHPREDMIN_AUTH_PASSWORD = mypassword does not set the password. Is there something I can do about this?

luongvm commented 7 years ago

@aconital please be aware that you will need to set PHPREDMIN_AUTH_PASSWORD = password_hash('mypassword') with password_hash is the php function. So it's going to be like PHPREDMIN_AUTH_PASSWORD = ACXOWMEO@

aconital commented 7 years ago

@joturako thank you!