ansible role to deploy apache on debian
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.
Ramiro de Zavalia 4c8e612d54 make variables bold пре 5 година
defaults add README information пре 5 година
handlers Initial import пре 5 година
tasks Initial import пре 5 година
templates Initial import пре 5 година
README.md make variables bold пре 5 година

README.md

Ansible role to deploy apache on debian

Requirement

You need a debian OS (tested on debian 10)

Variables (in defaults)

  • apache_listen_ips - default value:
    • 0.0.0.0:80
    • 0.0.0.0:443
  • apache_remove_default_vhost - default value: false
  • apache_mods_enabled - default value:
    • rewrite
    • ssl
  • apache_extra_mods_enabled - default value: empty list
  • apache_mods_disabled - default value: empty list
  • apache_state - default value: started
  • apache_service - default value: apache2
  • apache_server_root - default value: /etc/apache2
  • apache_conf_path - default value: /etc/apache2
  • apache_default_vhost_filename - default value: 000-default.conf
  • apache_packages - default value:
    • apache2
    • apache2-utils
  • apache_extr_packages - default value: empty list

Example playbook

Role philosophy