mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2024-12-22 11:00:18 +01:00
e9d5dedc70
Add absolute path for apache/httpd to avoid command not found error
23 lines
No EOL
433 B
YAML
23 lines
No EOL
433 B
YAML
---
|
|
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 }}"
|
|
} |