No Description
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.

site.yml 713B

123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. # This is the top-level playbook that defines our entire infrastructure.
  3. - hosts: all
  4. user: deploy
  5. become: True
  6. gather_facts: True
  7. # This is what I'm using on my minimal web & mail server
  8. roles:
  9. - common
  10. - sslletsencrypt
  11. - blog
  12. - mailserver
  13. - webmail
  14. - gitea
  15. - vpn
  16. - backup
  17. - monitoring # Monitoring role should be last. See roles/monitoring/README.md
  18. # These are all roles in one
  19. #roles:
  20. # - common
  21. # - blog
  22. # - mailserver
  23. # - webmail
  24. # - news
  25. # - nextcloud
  26. # - gitea
  27. # - ircbouncer
  28. # - xmpp
  29. # - matrix
  30. # - mastodon
  31. # - iot
  32. # - vpn
  33. # - monitoring # Monitoring role should be last. See roles/monitoring/README.md