ソースを参照

feat(redhat/apache-2.x.config.jinja): allow override of default_charset

The current Red Hat config allows to set DefaultCharset to a value.
In certain situations it is necessary to leave it unconfigured thouguh.

Make the content optional, if the value of apache.default_charset is None,
the item is skipped. Otherwise it defaults to UTF-8.
tags/v0.40.0
Andreas Thienemann 4年前
コミット
648f589cc3
コミッターのメールアドレスに関連付けられたアカウントが存在しません
2個のファイルの変更10行の追加2行の削除
  1. +5
    -1
      apache/files/RedHat/apache-2.2.config.jinja
  2. +5
    -1
      apache/files/RedHat/apache-2.4.config.jinja

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

@@ -387,7 +387,11 @@ LogLevel warn
# in HTML content to override this choice, comment out this
# directive:
#
AddDefaultCharset UTF-8
{%- if apache.get('default_charset', False) is none %}
# AddDefaultCharset UTF-8
{%- else %}
AddDefaultCharset {{ apache.get('default_charset', 'UTF-8') }}
{%- endif %}

<IfModule mime_magic_module>
#

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

@@ -348,7 +348,11 @@ LogLevel warn
# in HTML content to override this choice, comment out this
# directive:
#
AddDefaultCharset {{ apache.default_charset }}
{%- if apache.get('default_charset', False) is none %}
# AddDefaultCharset UTF-8
{%- else %}
AddDefaultCharset {{ apache.get('default_charset', 'UTF-8') }}
{%- endif %}

<IfModule mime_magic_module>
#

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