ansible role to deploy apache on debian
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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: []