Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.yml 1.3KB

12345678910111213141516171819202122232425262728293031
  1. fathom_admin_username: "{{ admin_email }}"
  2. fathom_admin_password: "{{ lookup('password', secret + '/' + 'fathom_admin_password length=32') }}"
  3. fathom_version: '1.2.1'
  4. fathom_release: "https://github.com/usefathom/fathom/releases/download/v{{ fathom_version }}/fathom_{{ fathom_version }}_linux_amd64.tar.gz"
  5. fathom_db_username: 'fathom'
  6. fathom_db_password: "{{ lookup('password', secret + '/' + 'fathom_db_password length=32') }}"
  7. fathom_db_database: 'fathom'
  8. fathom_subdomain: 'stats'
  9. fathom_internal_port: '9000'
  10. fathom_secret: "{{ lookup('password', secret + '/' + 'fathom_secret length=32') }}"
  11. commento_version: '1.8.0'
  12. commento_release: "https://dl.commento.io/release/commento-v{{ commento_version }}-linux-glibc-amd64.tar.gz"
  13. commento_subdomain: 'comments'
  14. commento_internal_port: '9100'
  15. commento_db_username: 'commentouser'
  16. commento_db_password: "{{ lookup('password', secret + '/' + 'commento_db_password length=32') }}"
  17. commento_db_database: 'commento'
  18. custom_db_username: 'pageuser'
  19. custom_db_password: "{{ lookup('password', secret + '/' + 'custom_db_password length=32') }}"
  20. custom_db_database: 'page'
  21. # must match values in roles/common
  22. db_admin_username: 'postgres'
  23. db_admin_password: "{{ lookup('password', secret + '/' + 'db_admin_password length=32') }}"