ソースを参照

Adding exclude_listen_directive option (#151)

* Adding exclude_listen_directive option

* Updating Debian config
tags/v0.37.4
Rob Ruma 8年前
コミット
d5337836b2
4個のファイルの変更17行の追加9行の削除
  1. +5
    -3
      apache/files/Debian/ports-2.2.conf.jinja
  2. +5
    -3
      apache/files/Debian/ports-2.4.conf.jinja
  3. +5
    -3
      apache/files/RedHat/apache-2.4.config.jinja
  4. +2
    -0
      pillar.example

+ 5
- 3
apache/files/Debian/ports-2.2.conf.jinja ファイルの表示

@@ -8,9 +8,11 @@
{%- set interfaces = site.get('interface', '*').split() %}
{%- set port = site.get('port', 80) %}
{%- for interface in interfaces %}
{%- set listen_directive = interface ~ ':' ~ port %}
{%- if listen_directive not in listen_directives %}
{%- do listen_directives.append(listen_directive) %}
{%- if not site.get('exclude_listen_directive', False) %}
{%- set listen_directive = interface ~ ':' ~ port %}
{%- if listen_directive not in listen_directives %}
{%- do listen_directives.append(listen_directive) %}
{%- endif %}
{%- endif %}
{%- endfor %}
{%- endfor %}

+ 5
- 3
apache/files/Debian/ports-2.4.conf.jinja ファイルの表示

@@ -8,9 +8,11 @@
{%- set interfaces = site.get('interface', '*').split() %}
{%- set port = site.get('port', 80) %}
{%- for interface in interfaces %}
{%- set listen_directive = interface ~ ':' ~ port %}
{%- if listen_directive not in listen_directives %}
{%- do listen_directives.append(listen_directive) %}
{%- if not site.get('exclude_listen_directive', False) %}
{%- set listen_directive = interface ~ ':' ~ port %}
{%- if listen_directive not in listen_directives %}
{%- do listen_directives.append(listen_directive) %}
{%- endif %}
{%- endif %}
{%- endfor %}
{%- endfor %}

+ 5
- 3
apache/files/RedHat/apache-2.4.config.jinja ファイルの表示

@@ -49,9 +49,11 @@ ServerRoot "/etc/httpd"
{%- set interfaces = site.get('interface', '*').split() %}
{%- set port = site.get('port', 80) %}
{%- for interface in interfaces %}
{%- set listen_directive = interface ~ ':' ~ port %}
{%- if listen_directive not in listen_directives %}
{%- do listen_directives.append(listen_directive) %}
{%- if not site.get('exclude_listen_directive', False) %}
{%- set listen_directive = interface ~ ':' ~ port %}
{%- if listen_directive not in listen_directives %}
{%- do listen_directives.append(listen_directive) %}
{%- endif %}
{%- endif %}
{%- endfor %}
{%- endfor %}

+ 2
- 0
pillar.example ファイルの表示

@@ -54,6 +54,8 @@ apache:
interface: '*'
port: '80'

exclude_listen_directive: True # Do not add a Listen directive in httpd.conf

ServerName: example.com # uses the unique ID above unless specified
ServerAlias: www.example.com


読み込み中…
キャンセル
保存