Install and configure Apache ansible role
Available for Ubuntu 22.04 LTS
apache
├── README.md
├── tasks
│ └── main.yml
├── templates
│ ├── 000-default.conf.j2
│ └── apache2.conf.j2
└── vars
└── main.yml
openssl
apache:
modules:
- module name
...
main_config_path: path to main config file
main_config: main config file name
virtual_host_config_path: path to virtual host config file
virtual_host_config: virtual host config file name
cert_directory: directory name for apache cert and key files
virtual_hosts: virtual hosts list for virtual_host_config file
- address: special address or group
options:
- name: option name
value: option value
...
...
(all options are described in Apache documentation)
directories: directories list in tag of main_config file
- path: path name
options:
- name: option name
value: option value
...
...
(all options are described in Apache documentation)
- hosts: proxy_server
roles:
- apache