mirror of
https://github.com/opnsense/plugins.git
synced 2026-05-28 04:34:15 -04:00
net/haproxy: add new HTTP timeout settings, refs #202
This commit is contained in:
parent
3a6c27bbf8
commit
55bcce55da
3 changed files with 30 additions and 0 deletions
|
|
@ -145,6 +145,20 @@
|
|||
<help><![CDATA[Set the maximum inactivity time on the client side. Defaults to milliseconds. Optionally the unit may be specified as either "d", "h", "m", "s", "ms" or "us".]]></help>
|
||||
<advanced>true</advanced>
|
||||
</field>
|
||||
<field>
|
||||
<id>frontend.tuning_timeoutHttpReq</id>
|
||||
<label>HTTP Request Timeout</label>
|
||||
<type>text</type>
|
||||
<help><![CDATA[Set the maximum allowed time to wait for a complete HTTP request. In order to offer DoS protection, it may be required to lower the maximum accepted time to receive a complete HTTP request without affecting the client timeout. This helps protecting against established connections on which nothing is sent. Defaults to milliseconds. Optionally the unit may be specified as either "d", "h", "m", "s", "ms" or "us".]]></help>
|
||||
<advanced>true</advanced>
|
||||
</field>
|
||||
<field>
|
||||
<id>frontend.tuning_timeoutHttpKeepAlive</id>
|
||||
<label>HTTP Keep-Alive Timeout</label>
|
||||
<type>text</type>
|
||||
<help><![CDATA[Set the maximum allowed time to wait for a new HTTP request to appear. Defaults to milliseconds. Optionally the unit may be specified as either "d", "h", "m", "s", "ms" or "us".]]></help>
|
||||
<advanced>true</advanced>
|
||||
</field>
|
||||
<field>
|
||||
<label>Logging Options</label>
|
||||
<type>header</type>
|
||||
|
|
|
|||
|
|
@ -381,6 +381,16 @@
|
|||
<ValidationMessage>Should be a number between 1 and 8 characters, optionally followed by either "d", "h", "m", "s", "ms" or "us".</ValidationMessage>
|
||||
<Required>N</Required>
|
||||
</tuning_timeoutClient>
|
||||
<tuning_timeoutHttpReq type="TextField">
|
||||
<mask>/^([0-9]{1,8}(?:us|ms|s|m|h|d)?)/u</mask>
|
||||
<ValidationMessage>Should be a number between 1 and 8 characters, optionally followed by either "d", "h", "m", "s", "ms" or "us".</ValidationMessage>
|
||||
<Required>N</Required>
|
||||
</tuning_timeoutHttpReq>
|
||||
<tuning_timeoutHttpKeepAlive type="TextField">
|
||||
<mask>/^([0-9]{1,8}(?:us|ms|s|m|h|d)?)/u</mask>
|
||||
<ValidationMessage>Should be a number between 1 and 8 characters, optionally followed by either "d", "h", "m", "s", "ms" or "us".</ValidationMessage>
|
||||
<Required>N</Required>
|
||||
</tuning_timeoutHttpKeepAlive>
|
||||
<logging_dontLogNull type="BooleanField">
|
||||
<default>0</default>
|
||||
<Required>Y</Required>
|
||||
|
|
|
|||
|
|
@ -651,6 +651,12 @@ frontend {{frontend.name}}
|
|||
timeout client {{frontend.tuning_timeoutClient}}
|
||||
{% elif OPNsense.HAProxy.general.defaults.timeoutClient is defined %}
|
||||
timeout client {{OPNsense.HAProxy.general.defaults.timeoutClient}}
|
||||
{% endif %}
|
||||
{% if frontend.tuning_timeoutHttpReq|default("") != "" and frontend.mode == 'http' %}
|
||||
timeout http-request {{frontend.tuning_timeoutHttpReq}}
|
||||
{% endif %}
|
||||
{% if frontend.tuning_timeoutHttpKeepAlive|default("") != "" and frontend.mode == 'http' %}
|
||||
timeout http-keep-alive {{frontend.tuning_timeoutHttpKeepAlive}}
|
||||
{% endif %}
|
||||
# logging options
|
||||
{% if frontend.logging_dontLogNull=='1' %}
|
||||
|
|
|
|||
Loading…
Reference in a new issue