Release v1.0.1

This commit is contained in:
aceberg 2023-08-18 13:35:12 +07:00
parent e51c870c0c
commit f0e1caa1dd
3 changed files with 8 additions and 1 deletions

View file

@ -2,6 +2,9 @@
# Change Log
All notable changes to this project will be documented in this file.
## [v1.0.1] - 2023-08-18
### Added
- User Authentification
## [v1.0.0] - 2023-08-03
### Changed

View file

@ -50,6 +50,10 @@ Configuration can be done through config file or environment variables
| COLOR | Background color: light or dark | light |
| IGNOREIP | If you want to detect unknown hosts by MAC only, set this wariable to "yes" | no |
| LOGLEVEL | How much log output you want to see ("short" or "verbose") | verbose |
| AUTH | Enable Session-Cookie authentication | false |
| AUTH_USER | Username | "" |
| AUTH_PASSWORD | Encrypted password (bcrypt) | "" |
| AUTH_EXPIRE | Session expiration time. A number and suffix: **m, h, d** or **M**. | 7d |
## Config file
> [!WARNING]

View file

@ -1 +1 @@
VERSION=1.0.0
VERSION=1.0.1