mirror of
https://github.com/Dokploy/templates.git
synced 2026-04-29 20:37:57 -05:00
* Add Authentik entry to meta.json - Introduced Authentik, an open-source Identity Provider for authentication and authorization, with detailed description, version, and relevant links. - Reformatted tag lists for consistency across entries. * Add GitLab CE entry to meta.json - Introduced GitLab Community Edition with a detailed description, logo, and relevant links. - Reformatted tag lists for consistency across entries.
26 lines
578 B
TOML
26 lines
578 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
main_domain_1 = "${domain}"
|
|
pg_user = "authentik"
|
|
pg_db = "authentik"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "server"
|
|
port = 9000
|
|
host = "${main_domain}"
|
|
path = "/"
|
|
|
|
[[config.domains]]
|
|
serviceName = "server"
|
|
port = 9443
|
|
host = "${main_domain_1}"
|
|
path = "/"
|
|
|
|
[config.env]
|
|
PG_USER = "${pg_user}"
|
|
PG_DB = "${pg_db}"
|
|
PG_PASS = "${password:32}" # Password for PostgreSQL authentication
|
|
AUTHENTIK_SECRET_KEY = "${password:64}" # Secret key for Authentik authentication
|
|
AUTHENTIK_IMAGE = "ghcr.io/goauthentik/server"
|
|
AUTHENTIK_TAG = "2025.6.3" |