Skip to content
Snippets Groups Projects
Commit efed89b1 authored by Maarten de Waard's avatar Maarten de Waard
Browse files

document variables in settings.yml.example, set acme_staging default to false

parent 35e7af59
No related branches found
No related tags found
No related merge requests found
...@@ -6,5 +6,12 @@ domain: "example.com" ...@@ -6,5 +6,12 @@ domain: "example.com"
admin_email: "admin@example.com" admin_email: "admin@example.com"
# Label of this deployment. # Label of this deployment.
release_name: "test" release_name: "test"
# Keycloak administrator password. If you do not change this value, it gets
# generated and stored in ./secrets/keycloak_admin_password. You can also choose
# your own password and fill it in here instead.
keycloak_password: "{{ lookup('password', './secrets/keycloak_admin_password') }}" keycloak_password: "{{ lookup('password', './secrets/keycloak_admin_password') }}"
acme_staging: "true" # If this is "true" TLS certificates will be requested at the Let's Encrypt
# staging server. If this is "false", you use Let's Encrypt's production server.
# Note that LE's production server has stricter rate limits, so set this to
# "true" when you are testing something.
acme_staging: false
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment