mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2024-11-14 17:30:19 +01:00
8393eef81e
- add apache_service variable with same content as apache_daemon
20 lines
436 B
YAML
20 lines
436 B
YAML
---
|
|
apache_service: httpd
|
|
apache_daemon: httpd
|
|
apache_daemon_path: /usr/sbin/
|
|
apache_server_root: /etc/httpd
|
|
apache_conf_path: /etc/httpd/conf.d
|
|
|
|
apache_vhosts_version: "2.2"
|
|
|
|
__apache_packages:
|
|
- httpd
|
|
- httpd-devel
|
|
- mod_ssl
|
|
- openssh
|
|
|
|
apache_ports_configuration_items:
|
|
- regexp: "^Listen "
|
|
line: "Listen {{ apache_listen_port }}"
|
|
- regexp: "^#?NameVirtualHost "
|
|
line: "NameVirtualHost *:{{ apache_listen_port }}"
|