You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ ENHANCEMENTS:
8
8
* Add support for the latest NGINX Plus R26 directives:
9
9
*`auth_jwt_require` now allows you to optionally set the `error` code you wish to return.
10
10
*`health_check` now lets you set a `keepalive_time`.
11
+
* Add support for the latest NGINX App Protect DoS directives (`app_protect_dos_arb_fqdn`, `app_protect_dos_api`, and `app_protect_dos_accelerated_mitigation`).
{%ifapp_protect_waf['compressed_requests_action'] isdefinedandapp_protect_waf['compressed_requests_action'] in ['pass', 'drop'] %}{# 'app_protect_compressed_requests_action' directive is only available in the 'http' context #}
{%ifapp_protect_waf['reconnect_period_seconds'] isdefinedandapp_protect_waf['reconnect_period_seconds'] isnumber%}{# 'app_protect_reconnect_period_seconds' directive is only available in the 'http' context #}
{%ifapp_protect_waf['request_buffer_overflow_action'] isdefinedandapp_protect_waf['request_buffer_overflow_action'] in ['pass', 'drop'] %}{# 'app_protect_request_buffer_overflow_action' directive is only available in the 'http' context #}
{%ifapp_protect_waf['reconnect_period_seconds'] isdefinedandapp_protect_waf['reconnect_period_seconds'] isnumber%}{# 'app_protect_reconnect_period_seconds' directive is only available in the 'http' context #}
@@ -73,7 +73,16 @@ app_protect_dos_security_log {{ app_protect_dos['security_log']['path'] }} {{ ap
73
73
app_protect_dos_liveness {{ app_protect_dos['liveness']['enable'] | ternary('on', 'off') }}{{ (' uri:' + app_protect_dos['liveness']['uri'] | string) if app_protect_dos['liveness']['uri'] is defined }}{{ (' port:' + app_protect_dos['liveness']['port'] | string) if app_protect_dos['liveness']['port'] is defined }};
74
74
{%endif%}
75
75
{%ifapp_protect_dos['readiness']['enable'] isdefinedandapp_protect_dos['readiness'] isboolean%}{# 'app_protect_dos_readiness' directive is only available in the 'http' context #}
76
-
app_protect_dos_readiness {{ app_protect_dos['readiness'] | ternary('on', 'off') }}{{ (' uri:' + app_protect_dos['readiness']['uri'] | string) if app_protect_dos['readiness']['uri'] is defined }}{{ (' port:' + app_protect_dos['readiness']['port'] | string) if app_protect_dos['readiness']['port'] is defined }};
76
+
app_protect_dos_readiness {{ app_protect_dos['readiness']['enable'] | ternary('on', 'off') }}{{ (' uri:' + app_protect_dos['readiness']['uri'] | string) if app_protect_dos['readiness']['uri'] is defined }}{{ (' port:' + app_protect_dos['readiness']['port'] | string) if app_protect_dos['readiness']['port'] is defined }};
77
+
{%endif%}
78
+
{%ifapp_protect_dos['arb_fqdn'] isdefined%}{# 'app_protect_dos_arb_fqdn' directive is only available in the 'http' context #}
{%ifapp_protect_dos['api'] isdefinedandapp_protect_dos['api'] isbooleanandapp_protect_dos['api'] | bool%}{# 'app_protect_dos_api' directive is only available in the 'location' context #}
82
+
app_protect_dos_api;
83
+
{%endif%}
84
+
{%ifapp_protect_dos['accelerated_mitigation'] isdefinedandapp_protect_dos['accelerated_mitigation'] isboolean%}{# 'app_protect_dos_accelerated_mitigation' directive is only available in the 'http' context #}
0 commit comments