mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2024-11-08 15:03:30 +01:00
170a9c2446
- set proper package and service name apache2 - configure given packages for Suse - install packages - start service
19 lines
436 B
YAML
19 lines
436 B
YAML
---
|
|
apache_service: apache2
|
|
apache_daemon: apache2
|
|
apache_daemon_path: /usr/sbin/
|
|
apache_server_root: /etc/apache2
|
|
apache_conf_path: /etc/apache2/conf.d
|
|
|
|
apache_vhosts_version: "2.2"
|
|
|
|
__apache_packages:
|
|
- apache2
|
|
- apache2-devel
|
|
- openssh
|
|
|
|
apache_ports_configuration_items:
|
|
- regexp: "^Listen "
|
|
line: "Listen {{ apache_listen_port }}"
|
|
- regexp: "^#?NameVirtualHost "
|
|
line: "NameVirtualHost *:{{ apache_listen_port }}"
|