Merge pull request #241 from pavlozt/master

Fix ports declaration. Allow bind to localhost. Style fix.
This commit is contained in:
Jeff Geerling 2024-03-06 21:20:02 -06:00 committed by GitHub
commit 25a7331dbf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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 }}"
}