I have removed the project and done it all over again.
I have replaced the YML file another 5.
Why do I get different PASSWORD_HASH for the same password? See the following:
**********@TNAS:/# docker run --rm -it ghcr.io/wg-easy/wg-easy wgpw 'myterra'
PASSWORD_HASH='$2a$12$12ZODIyXtIHHteUtKDDOT.kIZq9XDB3evAXCG2JVk7/WULZ4eruVu'
***********@TNAS:/# docker run --rm -it ghcr.io/wg-easy/wg-easy wgpw 'myterra'
PASSWORD_HASH='$2a$12$9ngHhIK4XatR.VsP0MNDFuCZC3pfCLnSbG1L/9tBYwKLheBK3oIsi'
***********@TNAS:/# docker run --rm -it ghcr.io/wg-easy/wg-easy wgpw 'myterra'
PASSWORD_HASH='$2a$12$pstJfrkD0CVYg6ad.69qJ.SUyONabmA/mai35S0uMrqz95VY5LbUG'
***********@TNAS:/#
Modern systems use salting, adding a unique, random string (the "salt") to each password before hashing, so even identical passwords produce unique hash values, preventing attackers from using precomputed tables (rainbow tables) to crack them. The process involves hash(password + salt), ensuring security by making each hash unique and computation-intensive, even for common passwords.