New - Authentication
Authentication can be enabled by setting both WEB_USERNAME
and WEB_PASSWORD
environment variables. When these are set:
- Web UI access will require login using these credentials
- API calls will require Basic Authentication
For API calls, you'll need to include an Authorization header with the Base64 encoded credentials in the format username:password
. The header should be formatted as: Authorization: Basic <encoded credentials>
What's Changed
- Authentication by @Brandawg93 in #183
Full Changelog: v5.3.0...v5.4.0