Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • ansible/roles/satis
1 result
Show changes
Commits on Source (1)
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
{% if apache_version|default('2.4') == '2.4' %} {% if apache_version|default('2.4') == '2.4' %}
ErrorLogFormat "[%{u}t] [%l] [pid %P] [client\ %{X-Forwarded-For}i] %M% ,\ referer:\ %{Referer}i" ErrorLogFormat "[%{u}t] [%l] [pid %P] [client\ %{X-Forwarded-For}i] %M% ,\ referer:\ %{Referer}i"
{% endif %} {% endif %}
LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" proxy LogFormat "\"%{X-Forwarded-For}i\" %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" proxy
ErrorLog ${APACHE_LOG_DIR}/{{ domain.domain }}-error.log ErrorLog ${APACHE_LOG_DIR}/{{ domain.domain }}-error.log
CustomLog ${APACHE_LOG_DIR}/{{ domain.domain }}-access.log combined env=!forwarded CustomLog ${APACHE_LOG_DIR}/{{ domain.domain }}-access.log combined env=!forwarded
CustomLog ${APACHE_LOG_DIR}/{{ domain.domain }}-access.log proxy env=forwarded CustomLog ${APACHE_LOG_DIR}/{{ domain.domain }}-access.log proxy env=forwarded
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
{% if apache_version|default('2.4') == '2.4' %} {% if apache_version|default('2.4') == '2.4' %}
ErrorLogFormat "[%{u}t] [%l] [pid %P] [client\ %{X-Forwarded-For}i] %M% ,\ referer:\ %{Referer}i" ErrorLogFormat "[%{u}t] [%l] [pid %P] [client\ %{X-Forwarded-For}i] %M% ,\ referer:\ %{Referer}i"
{% endif %} {% endif %}
LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" proxy LogFormat "\"%{X-Forwarded-For}i\" %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" proxy
ErrorLog ${APACHE_LOG_DIR}/{{ domain.domain }}-error.log ErrorLog ${APACHE_LOG_DIR}/{{ domain.domain }}-error.log
CustomLog ${APACHE_LOG_DIR}/{{ domain.domain }}-access.log combined env=!forwarded CustomLog ${APACHE_LOG_DIR}/{{ domain.domain }}-access.log combined env=!forwarded
CustomLog ${APACHE_LOG_DIR}/{{ domain.domain }}-access.log proxy env=forwarded CustomLog ${APACHE_LOG_DIR}/{{ domain.domain }}-access.log proxy env=forwarded
......