1
0
mirror of https://github.com/coalaura/whiskr.git synced 2025-09-08 17:06:42 +00:00
This commit is contained in:
Laura
2025-08-16 17:23:55 +02:00
parent 07624fd9fb
commit c7523268be

View File

@@ -133,7 +133,7 @@ go build -o whiskr
## Authentication (optional)
whiskr supports simple, stateless authentication. If enabled, users must log in with a username and password before accessing the chat. Passwords are hashed using bcrypt (12 rounds).
whiskr supports simple, stateless authentication. If enabled, users must log in with a username and password before accessing the chat. Passwords are hashed using bcrypt (12 rounds). If `authentication.enabled` is set to `false`, whiskr will not prompt for authentication at all.
```yaml
authentication:
@@ -147,10 +147,6 @@ authentication:
After a successful login, whiskr issues a signed (HMAC-SHA256) token, using the server secret (`tokens.secret` in `config.yml`). This is stored as a cookie and re-used for future authentications.
### 5. Disabling authentication
Set `authentication.enabled: false` in `config.yml` to allow open access.
## Usage
- Send a message with `Ctrl+Enter` or the send button