Ei kuvausta
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.

testing 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. ---
  2. ###############################################################################
  3. # Variables used when testing with Vagrant. Secrets are stored in
  4. # `.vagrant/provisioners/ansible/inventory/secret.
  5. #
  6. # selfoss_password_hash is the SHA512 hash of `foo`
  7. #
  8. ###############################################################################
  9. # common
  10. common_timezone: 'Etc/UTC'
  11. domain: sovereign.local
  12. main_user_name: sovereign
  13. friendly_networks:
  14. - "172.16.100.0/24"
  15. # admin email
  16. # fail2ban reports will be sent to this address
  17. admin_email: "{{ main_user_name }}@{{ domain }}"
  18. # mailserver
  19. mail_virtual_domains:
  20. - name: "{{ domain }}"
  21. pk_id: 1
  22. mail_virtual_users:
  23. - account: "{{ main_user_name }}"
  24. domain: "{{ domain }}"
  25. password_hash: "$6$IYJfaF3jvmbAzlSe$1HBkbIdrOTWA31WYon7VSE2xAcFzYSZuVb8d3I0NDWzPxXBaqkHqKs4rLeNO9CVQEKv7wA15QctCyXbdRqFDy." #foo
  26. domain_pk_id: 1
  27. mail_virtual_aliases:
  28. - source: "root@{{ domain }}"
  29. destination: "{{ admin_email }}"
  30. domain_pk_id: 1
  31. - source: "postmaster@{{ domain }}"
  32. destination: "{{ admin_email }}"
  33. domain_pk_id: 1
  34. - source: "webmaster@{{ domain }}"
  35. destination: "{{ admin_email }}"
  36. domain_pk_id: 1
  37. # timezone
  38. # common_timezone will be used in the common and mailserver roles
  39. common_timezone: 'Etc/UTC'
  40. # znc
  41. irc_nick: sovereign
  42. irc_ident: sovereign
  43. irc_realname: Mr. Sovereign
  44. irc_quitmsg: Bye
  45. irc_password_hash: "310c5f99825e80d5b1d663a0a993b8701255f16b2f6056f335ba6e3e720e57ed" #foo
  46. irc_password_salt: "YdlPM5yjBmc/;JO6cfL5"
  47. irc_timezone: "America/New_York" #Example: "America/New_York"
  48. # xmpp
  49. prosody_accounts:
  50. - name: "{{ main_user_name }}"
  51. password: foo
  52. # openvpn
  53. openvpn_key_country: "US"
  54. openvpn_key_province: "California"
  55. openvpn_key_city: "Beverly Hills"
  56. openvpn_key_org: "ACME CORPORATION"
  57. openvpn_key_ou: "Anvil Department"
  58. openvpn_clients:
  59. - laptop
  60. - phone
  61. - tablet