From bc7d051ffae373f4316c25a46a43cc45e7051665 Mon Sep 17 00:00:00 2001 From: Dakota Gravitt <19499852+dakotagrvtt@users.noreply.github.com> Date: Fri, 25 Jul 2025 22:45:07 -0500 Subject: [PATCH] Include empty password hash for users who want to use that. --- backend-php/include/config-sample.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend-php/include/config-sample.php b/backend-php/include/config-sample.php index 8c87ebf..ae728f7 100644 --- a/backend-php/include/config-sample.php +++ b/backend-php/include/config-sample.php @@ -74,6 +74,9 @@ // data to Hauk. To generate this value on the terminal: // - MD5 (insecure!): openssl passwd -1 // - bcrypt (secure): htpasswd -nBC 10 "" | tail -c +2 +// For empty password, use $2y$10$4ZP1iY8A3dZygXoPgsXYV.S3gHzBbiT9nSfONjhWrvMxVPkcFq1Ka +// You really should not use this unless you intentionally want a +// public instance that anyone in the world can use freely. "password_hash" => '', // REQUIRED: You MUST set a password hash before using Hauk! // The default empty value will not allow any connections.