mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2024-11-08 15:03:30 +01:00
547c0b404c
By default I leave it as "*", but for many cases, we don't want to bind our apache to all network addresses available for the server. For example if we want to only bind the apache to the localhost, we can use the following configuration: apache_listen_ip: "127.0.0.1"
12 lines
309 B
YAML
12 lines
309 B
YAML
---
|
|
apache_vhosts_version: "2.2"
|
|
apache_default_vhost_filename: 000-default
|
|
apache_ports_configuration_items:
|
|
- {
|
|
regexp: "^Listen ",
|
|
line: "Listen {{ apache_listen_port }}"
|
|
}
|
|
- {
|
|
regexp: "^#?NameVirtualHost ",
|
|
line: "NameVirtualHost {{ apache_listen_ip }}:{{ apache_listen_port }}"
|
|
}
|