mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
Add Authorizer blueprint with Docker Compose and configuration files
- Introduced Docker Compose setup for Authorizer service, including environment variables and volume configuration. - Added logo for Authorizer. - Created template.toml for Authorizer with default variables for configuration.
This commit is contained in:
16
blueprints/authorizer/template.toml
Normal file
16
blueprints/authorizer/template.toml
Normal file
@@ -0,0 +1,16 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
db_password = "${password:16}"
|
||||
admin_secret = "${password:32}"
|
||||
jwt_secret = "${password:32}"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "authorizer"
|
||||
port = 8080
|
||||
host = "${main_domain}"
|
||||
|
||||
[config.env]
|
||||
DB_PASSWORD = "${db_password}"
|
||||
ADMIN_SECRET = "${admin_secret}"
|
||||
JWT_SECRET = "${jwt_secret}"
|
||||
Reference in New Issue
Block a user