The authentication glue you need.
Go to file
3wc 312d8f786d
continuous-integration/drone/push Build is passing Details
Switch to self-hosted stack-ssh-deploy image [mass update]
2023-01-21 11:49:55 -08:00
releases add release note for next release: changing logout url 2023-01-17 15:19:39 +01:00
.drone.yml Switch to self-hosted stack-ssh-deploy image [mass update] 2023-01-21 11:49:55 -08:00
.env.sample prettify COPY_ASSETS default value 2023-01-05 23:42:28 +01:00
.gitignore init 2022-04-13 12:51:04 +02:00
README.md prettify COPY_ASSETS default value 2023-01-05 23:42:28 +01:00
abra.sh feat: add token expiry and email subject template 2022-12-20 20:39:04 +01:00
compose.yml feat: add logout redirection 2023-01-05 23:36:22 +01:00
custom.css.tmpl make menubar color customizable 2022-10-19 13:32:27 +02:00
custom_flows.yaml.tmpl feat: add logout redirection 2023-01-05 23:36:22 +01:00

README.md

authentik

authentik is an open-source Identity Provider focused on flexibility and versatility

List of all possible environment variables

  • Category: Apps
  • Status: 0, work-in-progress
  • Image: ghcr/goauthentik/server, 4, upstream
  • Healthcheck: Yes
  • Backups: Yes
  • Email: Yes
  • Tests: No
  • SSO: Yes

Quick start

  • abra app new authentik
  • abra app config <app-name>
  • abra app secret insert <app_name> email_pass v1 <password>
  • abra app secret generate -a <app_name>
  • abra app deploy <app-name>
  • abra app cmd <app_name> app set_admin_pass

Rotate Secrets

Increment the secret versions using abra app config <app_name>

abra app secret generate -a <app_name>
abra app undeploy <app_name>
abra app deploy <app_name>
abra app cmd <app_name> db rotate_db_pass
abra app cmd <app_name> app set_admin_pass

Customization

Place the files you want to overwrite in a directory <assets_path>. Run abra app config <app_name> and define the env variable COPY_ASSETS in the following format:

"<source_file1>|<service>:<target_directory1> <source_file2>|<service>:<target_directory2> ...

For example:

COPY_ASSETS="flow_background.jpg|app:/web/dist/assets/images/"
COPY_ASSETS="$COPY_ASSETS icon_left_brand.svg|app:/web/dist/assets/icons/
COPY_ASSETS="$COPY_ASSETS icon.png|app:/web/dist/assets/icons/"

Run this command after every deploy/upgrade:

abra app command --local <app-name> customize <assets_path>

For more, see docs.coopcloud.tech.