Re: [PATCH]: BUILD/MEDIUM da pcre2 support

2021-02-18 Thread Christopher Faulet
Le 16/02/2021 à 12:47, David Carlier a écrit : Hi, Here a patch proposal to update the DeviceAtlas Detection build in order to support the pcre2 library as option. Would be nice if backported back to the supported stable releases. Now merged, thanks ! -- Christopher Faulet

Re: [PATCH] MINOR: cli: add missing agent commands for set server

2021-02-18 Thread Christopher Faulet
Le 15/02/2021 à 17:22, William Dauchy a écrit : we previously forgot to add `agent-*` commands. Take this opportunity to rewrite the help string in a simpler way for readability (mainly removing simple quotes) Now merged, thanks ! -- Christopher Faulet

Re: [PATCH] introduce guard for SCTL openssl specific functions

2021-02-18 Thread Илья Шипицин
ping :) On Sat, Feb 13, 2021, 11:48 AM Илья Шипицин wrote: > I changed macro name, new patch attached > > сб, 13 февр. 2021 г. в 03:41, William Lallemand : > >> On Sat, Feb 13, 2021 at 12:21:56AM +0500, Илья Шипицин wrote: >> > Hello, >> > >> > let as switch to feature macro instead of

Re: Apache Proxypass mimicing ?

2021-02-18 Thread Aleksandar Lazic
HI. On 18.02.21 10:12, spfma.t...@e.mail.fr wrote: Hi, I would like to setup a reverse proxy with SSL termination to allow something like : https://front1.domain proxying http://back1.otherdomain:8000 (and maybe one day back2) https://front2.domain proxying http://back3.otherdomain:5000 >

Apache Proxypass mimicing ?

2021-02-18 Thread spfma . tech
Hi, I would like to setup a reverse proxy with SSL termination to allow something like : https://front1.domain proxying http://back1.otherdomain:8000 (and maybe one day back2) https://front2.domain proxying http://back3.otherdomain:5000 Common things I already configured using Apache's

Re: Segfault in liblua-5.3.so

2021-02-18 Thread Sachin Shetty
Hi Willy, Thanks for the response. Unfortunately we cannot reproduce this in the test and we have disabled the reload dependent feature in production. We will test more with the latest build and let you know. On Sat, Feb 13, 2021 at 1:28 PM Willy Tarreau wrote: > Hi Sachin, > > On Thu, Feb

Re: [PATCH] introduce guard for SCTL openssl specific functions

2021-02-18 Thread William Lallemand
On Thu, Feb 18, 2021 at 07:06:14PM +0500, Илья Шипицин wrote: > ping :) > > On Sat, Feb 13, 2021, 11:48 AM Илья Шипицин wrote: > > > I changed macro name, new patch attached > > Merged, thanks. -- William Lallemand

[PATCH] CI: switch to stable LibreSSL release

2021-02-18 Thread Илья Шипицин
I attached a patch that switches to LibreSSL-3.2.X (in the future, I'll have a look whether it is good idea to try libressl master branch or not) Ilya From c5dc6ff148214b314673c6ee1f83cb973ee4b1db Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin Date: Fri, 19 Feb 2021 12:09:31 +0500 Subject:

[PATCH 1/3] DOC: contrib/prometheus-exporter: remove htx reference

2021-02-18 Thread William Dauchy
now that htx is the default everywhere, we can remove the need to put htx as a mandatory option to setup prometheus. Signed-off-by: William Dauchy --- contrib/prometheus-exporter/README | 1 - 1 file changed, 1 deletion(-) diff --git a/contrib/prometheus-exporter/README

[PATCH 2/3] REGTESTS: contrib/prometheus-exporter: test NaN values

2021-02-18 Thread William Dauchy
In order to make sure we detect when we change default behaviour for some metrics, test the NaN value when it is expected. Those metrics were listed since our last rework as their default value changed, unless the appropriate config is set. Signed-off-by: William Dauchy ---

[PATCH 3/3] REGTESTS: contrib/prometheus-exporter: test well known labels

2021-02-18 Thread William Dauchy
as we previously briefly broke labels handling, test them to make sure we don't introduce regressions in the future. see also commit 040b1195f70d6a24204ede081451fd1dd71e6a34 ("BUG/MINOR: contrib/prometheus-exporter: Restart labels dump at the right pos") for reference Signed-off-by: William