Fix ports declaration. Allow bind to localhost. Style fix.

This commit is contained in:
PavelZ 2023-02-08 19:03:37 +03:00
parent 6e3373de3b
commit c6d921ce37
2 changed files with 3 additions and 3 deletions

View file

@ -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`

View file

@ -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 }}"
}