ansible role to deploy apache on debian
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
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