diff --git a/apache/files/Debian/ports-2.2.conf.jinja b/apache/files/Debian/ports-2.2.conf.jinja index f9c7339..ae51eb1 100644 --- a/apache/files/Debian/ports-2.2.conf.jinja +++ b/apache/files/Debian/ports-2.2.conf.jinja @@ -9,7 +9,7 @@ {%- set interfaces = site.get('interface', '*').split() %} {%- set port = site.get('port', 80) %} {%- for interface in interfaces %} - {%- if not site.get('exclude_listen_directive', False) %} + {%- if not site.get('exclude_listen_directive', False) and not port == '*' %} {%- set listen_directive = interface ~ ':' ~ port %} {%- if listen_directive not in listen_directives %} {%- do listen_directives.append(listen_directive) %} diff --git a/apache/files/Debian/ports-2.4.conf.jinja b/apache/files/Debian/ports-2.4.conf.jinja index f9c7339..ae51eb1 100644 --- a/apache/files/Debian/ports-2.4.conf.jinja +++ b/apache/files/Debian/ports-2.4.conf.jinja @@ -9,7 +9,7 @@ {%- set interfaces = site.get('interface', '*').split() %} {%- set port = site.get('port', 80) %} {%- for interface in interfaces %} - {%- if not site.get('exclude_listen_directive', False) %} + {%- if not site.get('exclude_listen_directive', False) and not port == '*' %} {%- set listen_directive = interface ~ ':' ~ port %} {%- if listen_directive not in listen_directives %} {%- do listen_directives.append(listen_directive) %} diff --git a/apache/files/FreeBSD/ports-2.4.conf.jinja b/apache/files/FreeBSD/ports-2.4.conf.jinja index f9c7339..ae51eb1 100644 --- a/apache/files/FreeBSD/ports-2.4.conf.jinja +++ b/apache/files/FreeBSD/ports-2.4.conf.jinja @@ -9,7 +9,7 @@ {%- set interfaces = site.get('interface', '*').split() %} {%- set port = site.get('port', 80) %} {%- for interface in interfaces %} - {%- if not site.get('exclude_listen_directive', False) %} + {%- if not site.get('exclude_listen_directive', False) and not port == '*' %} {%- set listen_directive = interface ~ ':' ~ port %} {%- if listen_directive not in listen_directives %} {%- do listen_directives.append(listen_directive) %} diff --git a/apache/files/RedHat/apache-2.4.config.jinja b/apache/files/RedHat/apache-2.4.config.jinja index 6dcaf88..5456d5e 100644 --- a/apache/files/RedHat/apache-2.4.config.jinja +++ b/apache/files/RedHat/apache-2.4.config.jinja @@ -50,7 +50,7 @@ ServerRoot "{{ apache.get('serverroot', '/etc/httpd') }}" {%- set interfaces = site.get('interface', '*').split() %} {%- set port = site.get('port', 80) %} {%- for interface in interfaces %} - {%- if not site.get('exclude_listen_directive', False) %} + {%- if not site.get('exclude_listen_directive', False) and not port == '*' %} {%- set listen_directive = interface ~ ':' ~ port %} {%- if listen_directive not in listen_directives %} {%- do listen_directives.append(listen_directive) %}