BeardedTek-com / authelia-manager

Flask frontend for Authelia Management
GNU Affero General Public License v3.0
10 stars 0 forks source link

Initial scope #1

Open BeardedTek opened 1 year ago

BeardedTek commented 1 year ago

Basic user management (VERY basic to start) using argon2id hashes Basic options in the configuration.yml file

I'm using my personal use case in this blog post as a starting point of things I want to control (authelia only)

Eventually a configurable endpoint to refresh authelia's config but that's secondary

BeardedTek commented 1 year ago

Eventually a configurable endpoint to refresh authelia's config but that's secondary

As it turns out, there is an option for authelia to watch for changes in its config and reload it automatically:

authentication_backend:
  file:
    path: /config/users_database.yml
    watch: true

watch: true will set it to reload on detected changes.