mirror of
https://github.com/mother-of-all-self-hosting/mash-playbook
synced 2024-11-10 14:24:25 +00:00
docs: Make variables more clear, don't use defaults
This commit is contained in:
parent
12a8b63bbd
commit
ff5dbde71f
1 changed files with 9 additions and 4 deletions
|
@ -22,13 +22,18 @@ To enable this service, add the following configuration to your `vars.yml` file
|
||||||
########################################################################
|
########################################################################
|
||||||
|
|
||||||
semaphore_enabled: true
|
semaphore_enabled: true
|
||||||
|
|
||||||
semaphore_hostname: semaphore.example.com
|
semaphore_hostname: semaphore.example.com
|
||||||
semaphore_admin_password: STRONG_PASSWORD
|
|
||||||
semaphore_admin_name: USERNAME
|
# Despite the confusing naming, semaphore_admin_name needs to hold a username, not a name!
|
||||||
semaphore_admin_email: user@example.org
|
semaphore_admin_name: ''
|
||||||
|
semaphore_admin_email: ''
|
||||||
|
# You can generate a strong password with a command like: `pwgen -s 64 1`
|
||||||
|
semaphore_admin_password: ''
|
||||||
|
|
||||||
# Key for encrypting access keys in database.
|
# Key for encrypting access keys in database.
|
||||||
# It must be generated by using the following command: head -c32 /dev/urandom | base64
|
# It must be generated by using the following command: head -c32 /dev/urandom | base64
|
||||||
semaphore_access_key_encryption: "PJOfV/7Q+ZDUxo2bgW8dgVbGJ6nNIJgEOyB3hcnVVz4="
|
semaphore_access_key_encryption: ''
|
||||||
|
|
||||||
########################################################################
|
########################################################################
|
||||||
# #
|
# #
|
||||||
|
|
Loading…
Reference in a new issue