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
@@ -91,14 +90,12 @@ Note that your host's `/path/to/etc/haproxy` folder should be populated with a f
91
90
92
91
## Reloading config
93
92
94
-
To be able to reload HAProxy configuration, you can send `SIGHUP` to the container:
93
+
To be able to reload HAProxy configuration, you can send `SIGUSR2` to the container:
95
94
96
95
```console
97
-
$ docker kill -s HUP my-running-haproxy
96
+
$ docker kill -s USR2 my-running-haproxy
98
97
```
99
98
100
-
To achieve seamless reloads it is required to use `expose-fd listeners` and socket transfers which are not enabled by default. More on this topic is in the blog post [Truly Seamless Reloads with HAProxy](https://www.haproxy.com/blog/truly-seamless-reloads-with-haproxy-no-more-hacks/).
101
-
102
99
## Enable Data Plane API
103
100
104
101
[Data Plane API](https://www.haproxy.com/documentation/hapee/2-7r1/api/data-plane-api/) sidecar is being distributed by default in all 2.0+ images and to enable it there are a few steps required:
Copy file name to clipboardExpand all lines: README_short.md
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -79,14 +79,12 @@ Note that your host's `/path/to/etc/haproxy` folder should be populated with a f
79
79
80
80
## Reloading config
81
81
82
-
To be able to reload HAProxy configuration, you can send `SIGHUP` to the container:
82
+
To be able to reload HAProxy configuration, you can send `SIGUSR2` to the container:
83
83
84
84
```console
85
-
$ docker kill -s HUP my-running-haproxy
85
+
$ docker kill -s USR2 my-running-haproxy
86
86
```
87
87
88
-
To achieve seamless reloads it is required to use `expose-fd listeners` and socket transfers which are not enabled by default. More on this topic is in the blog post [Truly Seamless Reloads with HAProxy](https://www.haproxy.com/blog/truly-seamless-reloads-with-haproxy-no-more-hacks/).
89
-
90
88
## Enable Data Plane API
91
89
92
90
[Data Plane API](https://www.haproxy.com/documentation/hapee/2-7r1/api/data-plane-api/) sidecar is being distributed by default in all 2.0+ images and to enable it there are a few steps required:
0 commit comments