Skip to content

Commit

Permalink
- removed stick on from frontend;
Browse files Browse the repository at this point in the history
- update readme to reflect above;
  • Loading branch information
timrvv committed Oct 19, 2017
1 parent f4a25ef commit e6490da
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ Set up (the latest version of) [HAProxy](http://www.haproxy.org/) in Ubuntu syst
* `haproxy_frontend.{n}.maxconn`: [optional]: Fix the maximum number of concurrent connections
* `haproxy_frontend.{n}.stick`: [optional]: Stick declarations
* `haproxy_frontend.{n}.stick.{n}.table`: [required]: Configure the stickiness table for the current section (e.g. `type ip size 500k`)
* `haproxy_frontend.{n}.stick.{n}.stick_on`: [required]: Define a request pattern to associate a user to a server (e.g. `src`)
* `haproxy_frontend.{n}.option`: [optional]: Options to set (e.g. `[tcplog]`)
* `haproxy_frontend.{n}.no_option`: [optional]: Options to unset (e.g. `[forceclose]`)
* `haproxy_frontend.{n}.no_log`: [optional, default `false`]: Used when the logger list must be flushed. For example, if you don't want to inherit from the default logger list
Expand Down
1 change: 0 additions & 1 deletion templates/etc/haproxy/frontend.cfg.j2
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ frontend {{ frontend.name }}

{% for stick in frontend.stick | default([]) %}
stick-table {{ stick.table }}
stick on {{ stick.stick_on }}
{% endfor %}

{% for option in frontend.option | default([]) %}
Expand Down

0 comments on commit e6490da

Please sign in to comment.