diff options
author | Christian Breunig <christian@breunig.cc> | 2023-05-17 18:46:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-17 18:46:07 +0200 |
commit | 9e9794a763e7e56a3a4c0001ea2b5bbc46bbb681 (patch) | |
tree | ea53b705e7cf44a391a0dbef1323f97b5d735f54 /interface-definitions/include/haproxy/timeout.xml.i | |
parent | 0c91c356183bb33dea0b24c9ccd77b55c15e7ea0 (diff) | |
parent | 6d0325190fcede5b912c20cfb6ffefab90a3f4f4 (diff) | |
download | vyos-1x-9e9794a763e7e56a3a4c0001ea2b5bbc46bbb681.tar.gz vyos-1x-9e9794a763e7e56a3a4c0001ea2b5bbc46bbb681.zip |
Merge pull request #2004 from sever-sever/T5222
T5222: Add load-balancing for web traffic
Diffstat (limited to 'interface-definitions/include/haproxy/timeout.xml.i')
-rw-r--r-- | interface-definitions/include/haproxy/timeout.xml.i | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/interface-definitions/include/haproxy/timeout.xml.i b/interface-definitions/include/haproxy/timeout.xml.i new file mode 100644 index 000000000..250b35683 --- /dev/null +++ b/interface-definitions/include/haproxy/timeout.xml.i @@ -0,0 +1,45 @@ +<!-- include start from haproxy/timeout.xml.i --> +<node name="timeout"> + <properties> + <help>Tiemout options</help> + </properties> + <children> + <leafNode name="check"> + <properties> + <help>Timeout in seconds for established connections</help> + <valueHelp> + <format>u32:1-3600</format> + <description>Check timeout in seconds</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-3600"/> + </constraint> + </properties> + </leafNode> + <leafNode name="connect"> + <properties> + <help>Set the maximum time to wait for a connection attempt to a server to succeed</help> + <valueHelp> + <format>u32:1-3600</format> + <description>Connect timeout in seconds</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-3600"/> + </constraint> + </properties> + </leafNode> + <leafNode name="server"> + <properties> + <help>Set the maximum inactivity time on the server side</help> + <valueHelp> + <format>u32:1-3600</format> + <description>Server timeout in seconds</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-3600"/> + </constraint> + </properties> + </leafNode> + </children> +</node> +<!-- include end --> |