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 586B

12345678910111213141516171819202122232425262728293031
  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_daemon: apache2
  16. apache_daemon_path: /usr/sbin/
  17. apache_server_root: /etc/apache2
  18. apache_conf_path: /etc/apache2
  19. apache_default_vhost_filename: 000-default.conf
  20. apache_packages:
  21. - apache2
  22. - apache2-utils
  23. apache_extra_packages: []