mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2024-11-08 15:03:30 +01:00
Fix ports declaration. Allow bind to localhost. Style fix.
This commit is contained in:
parent
6e3373de3b
commit
c6d921ce37
2 changed files with 3 additions and 3 deletions
|
@ -49,8 +49,8 @@ apache_mods_disabled: []
|
|||
# Set initial apache state. Recommended values: `started` or `stopped`
|
||||
apache_state: started
|
||||
|
||||
# Set initial apache service status. Recommended values: `yes` or `no`
|
||||
apache_enabled: yes
|
||||
# Set initial apache service status. Recommended values: `true` or `false`
|
||||
apache_enabled: true
|
||||
|
||||
# Set apache state when configuration changes are made. Recommended values:
|
||||
# `restarted` or `reloaded`
|
||||
|
|
|
@ -4,5 +4,5 @@ apache_default_vhost_filename: 000-default.conf
|
|||
apache_ports_configuration_items:
|
||||
- {
|
||||
regexp: "^Listen ",
|
||||
line: "Listen {{ apache_listen_port }}"
|
||||
line: "Listen {{ (apache_listen_ip == '*') | ternary('', apache_listen_ip+':')}}{{ apache_listen_port }}"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue