ansible role to deploy apache on debian
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

main.yml 532B

1234567891011121314151617181920212223242526272829
  1. ---
  2. apache_listen_ips:
  3. - 0.0.0.0:80
  4. - 0.0.0.0:443
  5. # A default virtualhost is included in Apache's configuration.
  6. # Set this to `true` to remove that default.
  7. apache_remove_default_vhost: false
  8. apache_mods_enabled:
  9. - rewrite
  10. - ssl
  11. apache_extra_mods_enabled: []
  12. apache_mods_disabled: []
  13. apache_state: started
  14. apache_service: apache2
  15. apache_server_root: /etc/apache2
  16. apache_conf_path: /etc/apache2
  17. apache_default_vhost_filename: 000-default.conf
  18. apache_packages:
  19. - apache2
  20. - apache2-utils
  21. apache_extra_packages: []