[PATCH 1/1] CI: speedup apt package install

2024-05-31 Thread Ilia Shipitsin
we are fine to skip some repos like languages and translations. this drops number of repos twice --- .github/workflows/coverity.yml | 2 +- .github/workflows/cross-zoo.yml | 2 +- .github/workflows/vtest.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git

[PATCH 0/1] CI: speedup packages install

2024-05-31 Thread Ilia Shipitsin
we can save 1-2 sec by excluding languages and translations repos. Ilia Shipitsin (1): CI: speedup apt package install .github/workflows/coverity.yml | 2 +- .github/workflows/cross-zoo.yml | 2 +- .github/workflows/vtest.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) --

Advertising Enquiry - abclinuxu.cz

2024-05-31 Thread Sara Viveiros
Hi, I hope this email finds you well. I'm Sara Viveiros and I work for a media buying company. I'm getting in touch to discuss potential partnership opportunities that could be mutually beneficial for our organizations. Payment in advance (US Dollars USD) so you don't risk anything! Thank you

Re: Patch proposal for FEATURE/MAJOR: Add upstream-proxy-tunnel feature

2024-05-31 Thread Aleksandar Lazic
Hi. Anyone who have some Ideas how to fix the return way? Regards Alex On 2024-05-27 (Mo.) 09:12, Aleksandar Lazic wrote: Hi. I have done some progress with the feature :-) The test setup runs in 4 shells. # shell1: curl -vk --connect-to www.test1.com:4433:127.0.0.1:8080 -H "Host:

Re: [PATCH 2/3] CI: build-ssl.sh: allow to choose certain QuicTLS commit hash

2024-05-30 Thread Илья Шипицин
пт, 31 мая 2024 г. в 01:16, William Lallemand : > On Thu, May 30, 2024 at 10:31:14PM +0200, Ilia Shipitsin wrote: > > Subject: [PATCH 2/3] CI: build-ssl.sh: allow to choose certain QuicTLS > commit hash > > --- > > scripts/build-ssl.sh | 6 ++ > > 1 file changed, 6 insertions(+) > > > > diff

Re: [PATCH 2/3] CI: build-ssl.sh: allow to choose certain QuicTLS commit hash

2024-05-30 Thread William Lallemand
On Thu, May 30, 2024 at 10:31:14PM +0200, Ilia Shipitsin wrote: > Subject: [PATCH 2/3] CI: build-ssl.sh: allow to choose certain QuicTLS commit > hash > --- > scripts/build-ssl.sh | 6 ++ > 1 file changed, 6 insertions(+) > > diff --git a/scripts/build-ssl.sh b/scripts/build-ssl.sh > index

[PATCH 1/3] CI: introduce QuicTLS commit helper

2024-05-30 Thread Ilia Shipitsin
QuicTLS is not changed frequently, thus it makes sense to cache it across builds. We need its "version", let's stick on commit hash --- .github/matrix.py | 57 ++- 1 file changed, 47 insertions(+), 10 deletions(-) diff --git a/.github/matrix.py

[PATCH 0/3] CI: enable QuicTLS cache

2024-05-30 Thread Ilia Shipitsin
QuicTLS cache is enabled per commit hash (as it has no releases). The latest commit hash is determined during matrix build and used on later stages. Ilia Shipitsin (3): CI: introduce QuicTLS commit helper CI: build-ssl.sh: allow to choose certain QuicTLS commit hash CI: enable QuicTLS

[PATCH 2/3] CI: build-ssl.sh: allow to choose certain QuicTLS commit hash

2024-05-30 Thread Ilia Shipitsin
--- scripts/build-ssl.sh | 6 ++ 1 file changed, 6 insertions(+) diff --git a/scripts/build-ssl.sh b/scripts/build-ssl.sh index f1a6f8a86..15d2c242f 100755 --- a/scripts/build-ssl.sh +++ b/scripts/build-ssl.sh @@ -149,6 +149,12 @@ build_aws_lc () { download_quictls () { if [ ! -d

[PATCH 3/3] CI: enable QuicTLS cache

2024-05-30 Thread Ilia Shipitsin
--- .github/workflows/vtest.yml | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/vtest.yml b/.github/workflows/vtest.yml index 8b10a1cdc..1c4dcb45b 100644 --- a/.github/workflows/vtest.yml +++ b/.github/workflows/vtest.yml @@ -56,14 +56,21 @@ jobs:

Re: [PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread William Lallemand
On Thu, May 30, 2024 at 04:13:23PM +0200, Илья Шипицин wrote: > feel free to modify it when applying. or I can send v2 > Thanks, merged! -- William Lallemand

Re: [PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread William Lallemand
On Thu, May 30, 2024 at 04:37:20PM +0200, Илья Шипицин wrote: > чт, 30 мая 2024 г. в 16:12, William Lallemand : > > > On Thu, May 30, 2024 at 03:40:31PM +0200, Ilia Shipitsin wrote: > > > Subject: [PATCH 1/1] CI: VTest: accelerate package install a bit > > > let's check and install only package is

Re: [PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread Илья Шипицин
чт, 30 мая 2024 г. в 16:12, William Lallemand : > On Thu, May 30, 2024 at 03:40:31PM +0200, Ilia Shipitsin wrote: > > Subject: [PATCH 1/1] CI: VTest: accelerate package install a bit > > let's check and install only package is required > > --- > > .github/workflows/vtest.yml | 8 > > 1

Re: [PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread Илья Шипицин
чт, 30 мая 2024 г. в 16:14, Willy Tarreau : > Hi Ilya, > > On Thu, May 30, 2024 at 03:40:31PM +0200, Ilia Shipitsin wrote: > > + ${{ contains(matrix.FLAGS, 'USE_LUA=1') && > 'liblua5.4-dev' || '' }} \ > > + ${{ contains(matrix.FLAGS, 'USE_PCRE2=1') && > 'libpcre2-dev'

Re: [PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread Willy Tarreau
On Thu, May 30, 2024 at 04:12:02PM +0200, William Lallemand wrote: > On Thu, May 30, 2024 at 03:40:31PM +0200, Ilia Shipitsin wrote: > > Subject: [PATCH 1/1] CI: VTest: accelerate package install a bit > > let's check and install only package is required > > --- > > .github/workflows/vtest.yml |

Re: [PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread Willy Tarreau
Hi Ilya, On Thu, May 30, 2024 at 03:40:31PM +0200, Ilia Shipitsin wrote: > + ${{ contains(matrix.FLAGS, 'USE_LUA=1') && 'liblua5.4-dev' || > '' }} \ > + ${{ contains(matrix.FLAGS, 'USE_PCRE2=1') && 'libpcre2-dev' || > '' }} \ > + ${{ contains(matrix.FLAGS,

Re: [PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread Илья Шипицин
feel free to modify it when applying. or I can send v2 чт, 30 мая 2024 г. в 16:12, William Lallemand : > On Thu, May 30, 2024 at 03:40:31PM +0200, Ilia Shipitsin wrote: > > Subject: [PATCH 1/1] CI: VTest: accelerate package install a bit > > let's check and install only package is required > >

Re: [PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread William Lallemand
On Thu, May 30, 2024 at 03:40:31PM +0200, Ilia Shipitsin wrote: > Subject: [PATCH 1/1] CI: VTest: accelerate package install a bit > let's check and install only package is required > --- > .github/workflows/vtest.yml | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git

Re: [PATCH] FEATURE: Adding MPTCP with option to disable it and fall-back to TCP

2024-05-30 Thread Willy Tarreau
Hi Matthieu, finally a bit more available again... On Fri, Apr 26, 2024 at 06:34:02PM +0200, Matthieu Baerts wrote: > > I *am* interested in the feature, which has been > > floating around for a few years already. However I tend to agree with > > Nicolas that, at least for the principle of least

Re: [PATCH v2] FEATURE: add opt-in MPTCP support

2024-05-30 Thread Willy Tarreau
Hi Dorian, I'm now done with the release and having more time to read your work. First, thanks for this update. I understand that you're almost running out of time on this topic which must be completed before June so I'm not going to make you waste your time. Some comments below. On Thu, May 16,

[PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread Ilia Shipitsin
let's check and install only package is required --- .github/workflows/vtest.yml | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/vtest.yml b/.github/workflows/vtest.yml index f862dc5a7..5208df757 100644 --- a/.github/workflows/vtest.yml +++

[PATCH 0/1] CI: install apt packages in more intelligent way

2024-05-30 Thread Ilia Shipitsin
let's install only requires packages Ilia Shipitsin (1): CI: VTest: accelerate package install a bit .github/workflows/vtest.yml | 8 1 file changed, 4 insertions(+), 4 deletions(-) -- 2.43.0.windows.1

Re: [PATCH 0/3] CI: preparation for Ubuntu 24.04

2024-05-29 Thread Willy Tarreau
On Wed, May 29, 2024 at 09:59:13PM +0200, Ilia Shipitsin wrote: > GitHub has launched Ubuntu 24.04 runners in beta. > While runners are not yet stable, switching to them > has shown some inconsistance in pipeline which is better > to be resolved before actual upgrade to Ubuntu 24.04 > > Ilia

Re: [PATCH 1/2] REGTESTS: Remove REQUIRE_VERSION=2.1 from all tests

2024-05-29 Thread Willy Tarreau
On Wed, May 29, 2024 at 07:55:32PM +0200, Tim Duesterhus wrote: > HAProxy 2.2 is the lowest supported version, thus this always matches. (...) Both patches applied, thank you Tim! Willy

[PATCH 3/3] CI: use USE_PCRE2 instead of USE_PCRE

2024-05-29 Thread Ilia Shipitsin
USE_PCRE2 is recommended, I guess USE_PCRE is left unintentionally --- .github/matrix.py | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/matrix.py b/.github/matrix.py index d3ab890da..a9ab4424e 100755 --- a/.github/matrix.py +++ b/.github/matrix.py @@ -123,8

[PATCH 2/3] CI: switch to lua 5.4

2024-05-29 Thread Ilia Shipitsin
current release is 5.4, let's switch to it --- .github/workflows/coverity.yml | 2 +- .github/workflows/vtest.yml| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 18f4a251b..82776148a 100644 ---

[PATCH 1/3] CI: use "--no-install-recommends" for apt-get

2024-05-29 Thread Ilia Shipitsin
this reduces number of packages installed by 1 --- .github/workflows/coverity.yml | 2 +- .github/workflows/vtest.yml| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 0b3c4af91..18f4a251b 100644 ---

[PATCH 0/3] CI: preparation for Ubuntu 24.04

2024-05-29 Thread Ilia Shipitsin
GitHub has launched Ubuntu 24.04 runners in beta. While runners are not yet stable, switching to them has shown some inconsistance in pipeline which is better to be resolved before actual upgrade to Ubuntu 24.04 Ilia Shipitsin (3): CI: use "--no-install-recommends" for apt-get CI: switch to

Re: [ANNOUNCE] haproxy-3.0.0

2024-05-29 Thread Willy Tarreau
Hi Tim, On Wed, May 29, 2024 at 07:48:10PM +0200, Tim Düsterhus wrote: > Hi > > On 5/29/24 17:07, Willy Tarreau wrote: > > HAProxy 3.0.0 was released on 2024/05/29. > > Congratulations on the successful release! Thanks! > I've just opened a PR for the "Official Docker Images" to add HAProxy

[PATCH 1/2] REGTESTS: Remove REQUIRE_VERSION=2.1 from all tests

2024-05-29 Thread Tim Duesterhus
HAProxy 2.2 is the lowest supported version, thus this always matches. see 7aff1bf6b90caadfa95f6b43b526275191991d6f --- reg-tests/converter/sha2.vtc | 1 - reg-tests/sample_fetches/srv_name.vtc | 2 -- 2 files changed, 3 deletions(-) diff --git a/reg-tests/converter/sha2.vtc

[PATCH 2/2] REGTESTS: Remove REQUIRE_VERSION=2.2 from all tests

2024-05-29 Thread Tim Duesterhus
HAProxy 2.2 is the lowest supported version, thus this always matches. see 7aff1bf6b90caadfa95f6b43b526275191991d6f --- reg-tests/checks/http-check-expect.vtc | 1 - reg-tests/checks/http-check.vtc | 1 - reg-tests/checks/http-monitor-uri.vtc

Re: [ANNOUNCE] haproxy-3.0.0

2024-05-29 Thread Tim Düsterhus
Hi On 5/29/24 17:07, Willy Tarreau wrote: HAProxy 3.0.0 was released on 2024/05/29. Congratulations on the successful release! I've just opened a PR for the "Official Docker Images" to add HAProxy 3.1: https://github.com/docker-library/haproxy/pull/234 And of course it wouldn't be a real

[ANNOUNCE] haproxy-3.0.0

2024-05-29 Thread Willy Tarreau
Hi, HAProxy 3.0.0 was released on 2024/05/29. It added 21 new commits after version 3.0-dev13. I do appreciate that everything was only cosmetic. We're having a total of 1108 patches in this release among which 850 ones not concerning a bug, which makes it the smallest LTS release of all times

Hiring for Java Developer - FIX protocol::Dublin,County Dublin,Ireland::Contract

2024-05-28 Thread Manisha Devaruppala
Hi, Greetings from Avance Consulting Services! This is *Manisha Devaruppala,* from *Avance Consulting Services, a global recruitment and staffing firm based in London. *I would like to update you on the open positions of *Java Developer - FIX protocol**. *Appreciate if you can send me your

Your blog may miss this opportunity;haproxy

2024-05-27 Thread Ariana Sarah
Hi, I hope this email finds you well. I'm reaching out to invite you to contribute a guest post. We're always on the lookout for fresh perspectives and valuable content, and after reviewing your work, we believe your expertise would be a great fit for our audience. I have two more options. 1-

Patch proposal for FEATURE/MAJOR: Add upstream-proxy-tunnel feature (was: Re: Maybe stupid question but can HAProxy now use a upstream proxy)

2024-05-27 Thread Aleksandar Lazic
Hi. I have done some progress with the feature :-) The test setup runs in 4 shells. # shell1: curl -vk --connect-to www.test1.com:4433:127.0.0.1:8080 -H "Host: www.test1.com" https://www.test1.com:4433 # shell2: ./haproxy -d -f examples/upstream-proxy.cfg # shell3: sudo podman run --rm -it

[ANNOUNCE] haproxy-3.0-dev13

2024-05-24 Thread Willy Tarreau
Hi, HAProxy 3.0-dev13 was released on 2024/05/24. It added 66 new commits after version 3.0-dev12. Well, first, I really want to thank all those who've been trying 3.0-dev recently, this has been useful to nail down various issues, some quite recent and other ones much older, and it's way more

Need people - Haproxy Technologies?

2024-05-24 Thread Ivana Carter
Hi there, Just a quick note to follow back… Is your company swarmed with work / too few employees? We can help with tasks like Marketing Support, Entering Data, Helping Customers, Virtual Assistance, Research & more Worth 90 seconds to explore? Ivana Carter Asychab | Assistant Marketing

Re: [PATCH v2] MINOR: config: rhttp: Don't require SSL when attach-srv name parsing

2024-05-24 Thread Willy Tarreau
On Thu, May 23, 2024 at 03:58:45PM +0100, William Manley wrote: > I can also report that I no longer need to avoid `nbthread 1` in the config > on the node. Presumably thanks to ceebb09744df367ad84586a341d9336f84f72bce > "rhttp: fix preconnect on single-thread". BTW keep in mind that connections

Re: Maybe stupid question but can HAProxy now use a upstream proxy

2024-05-23 Thread Aleksandar Lazic
Hi. I have seen https://github.com/haproxy/haproxy/issues/1542 which requests that feature. Now I have tried to "port" the https://github.com/brentcetinich/haproxy/commit/bc258bff030677d855a6a84fec881398e8f1e082 to the current dev branch and attached the patch. I'm pretty sure that there

Maybe stupid question but can HAProxy now use a upstream proxy

2024-05-23 Thread Aleksandar Lazic
Hi. I follow the development more or less closely and I must say I not always understand all changes :-). Just for my clarification is the following setup now possible with HAProxy with all the new shiny features :-) client => frontend | \-> backend server

HAProxy 2.0 EOL?

2024-05-23 Thread Tim Düsterhus
Hi HAProxy 2.0 is expected to go EOL this quarter. The maintainers of the Docker images provided by the "Docker Official Images" program already assumed that it was EOL [1] when needing to remove the Alpine builds due to the EOL of the Alpine version. The Debian-based images have been

Re: [PATCH v2] MINOR: config: rhttp: Don't require SSL when attach-srv name parsing

2024-05-23 Thread Amaury Denoyelle
On Thu, May 23, 2024 at 03:58:45PM +0100, William Manley wrote: > On Thu, May 23, 2024, at 3:52 PM, William Manley wrote: > > On Thu, May 23, 2024, at 3:45 PM, Amaury Denoyelle wrote: > > [...] > > Thank you for your quick testing. I have manage to reproduce what I > > think could be a similar

Re: [PATCH v2] MINOR: config: rhttp: Don't require SSL when attach-srv name parsing

2024-05-23 Thread William Manley
On Thu, May 23, 2024, at 3:52 PM, William Manley wrote: > On Thu, May 23, 2024, at 3:45 PM, Amaury Denoyelle wrote: > > On Thu, May 23, 2024 at 02:47:15PM +0100, William Manley wrote: > > > On Thu, May 23, 2024, at 2:08 PM, Amaury Denoyelle wrote: > > > > On Thu, May 23, 2024 at 11:55:13AM +0100,

Re: [PATCH v2] MINOR: config: rhttp: Don't require SSL when attach-srv name parsing

2024-05-23 Thread William Manley
On Thu, May 23, 2024, at 3:45 PM, Amaury Denoyelle wrote: > On Thu, May 23, 2024 at 02:47:15PM +0100, William Manley wrote: > > On Thu, May 23, 2024, at 2:08 PM, Amaury Denoyelle wrote: > > > On Thu, May 23, 2024 at 11:55:13AM +0100, William Manley wrote: > > > > On Thu, May 23, 2024, at 11:34 AM,

Re: [PATCH v2] MINOR: config: rhttp: Don't require SSL when attach-srv name parsing

2024-05-23 Thread Amaury Denoyelle
On Thu, May 23, 2024 at 02:47:15PM +0100, William Manley wrote: > On Thu, May 23, 2024, at 2:08 PM, Amaury Denoyelle wrote: > > On Thu, May 23, 2024 at 11:55:13AM +0100, William Manley wrote: > > > On Thu, May 23, 2024, at 11:34 AM, William Manley wrote: > > > > On Thu, May 23, 2024, at 10:08 AM,

Re: [PATCH v2] MINOR: config: rhttp: Don't require SSL when attach-srv name parsing

2024-05-23 Thread William Manley
On Thu, May 23, 2024, at 2:08 PM, Amaury Denoyelle wrote: > On Thu, May 23, 2024 at 11:55:13AM +0100, William Manley wrote: > > On Thu, May 23, 2024, at 11:34 AM, William Manley wrote: > > > On Thu, May 23, 2024, at 10:08 AM, Amaury Denoyelle wrote: > > > > On Wed, May 22, 2024 at 04:58:44PM

Re: [PATCH v2] MINOR: config: rhttp: Don't require SSL when attach-srv name parsing

2024-05-23 Thread Amaury Denoyelle
On Thu, May 23, 2024 at 11:55:13AM +0100, William Manley wrote: > On Thu, May 23, 2024, at 11:34 AM, William Manley wrote: > > On Thu, May 23, 2024, at 10:08 AM, Amaury Denoyelle wrote: > > > On Wed, May 22, 2024 at 04:58:44PM +0100, William Manley wrote: > > > > On Wed, May 22, 2024, at 1:06 PM,

Re: [PATCH v2] MINOR: config: rhttp: Don't require SSL when attach-srv name parsing

2024-05-23 Thread William Manley
On Thu, May 23, 2024, at 11:34 AM, William Manley wrote: > On Thu, May 23, 2024, at 10:08 AM, Amaury Denoyelle wrote: > > On Wed, May 22, 2024 at 04:58:44PM +0100, William Manley wrote: > > > On Wed, May 22, 2024, at 1:06 PM, Amaury Denoyelle wrote: > > > > FYI, I just merged a series of fix to

Re: [PATCH v2] MINOR: config: rhttp: Don't require SSL when attach-srv name parsing

2024-05-23 Thread William Manley
On Thu, May 23, 2024, at 10:08 AM, Amaury Denoyelle wrote: > On Wed, May 22, 2024 at 04:58:44PM +0100, William Manley wrote: > > On Wed, May 22, 2024, at 1:06 PM, Amaury Denoyelle wrote: > > > FYI, I just merged a series of fix to improve reverse HTTP. It is now > > > possible to use PROXY

Re: [PATCH v2] MINOR: config: rhttp: Don't require SSL when attach-srv name parsing

2024-05-23 Thread Amaury Denoyelle
On Wed, May 22, 2024 at 04:58:44PM +0100, William Manley wrote: > On Wed, May 22, 2024, at 1:06 PM, Amaury Denoyelle wrote: > > FYI, I just merged a series of fix to improve reverse HTTP. It is now > > possible to use PROXY protocol on preconnect stage. Also, you have the > > availability to use

Proszę o kontakt

2024-05-23 Thread Marcin Gard
Dzień dobry, Czy jest możliwość nawiązania współpracy z Państwem? Z chęcią porozmawiam z osobą zajmującą się działaniami związanymi ze sprzedażą. Pomagamy skutecznie pozyskiwać nowych klientów. Zapraszam do kontaktu. Pozdrawiam serdecznie Marcin Gard

Re: [PATCH v2] MINOR: config: rhttp: Don't require SSL when attach-srv name parsing

2024-05-22 Thread William Manley
On Wed, May 22, 2024, at 1:06 PM, Amaury Denoyelle wrote: > FYI, I just merged a series of fix to improve reverse HTTP. It is now > possible to use PROXY protocol on preconnect stage. Also, you have the > availability to use PROXY v2 TLV to differentiate connections. Note > however that PROXY

Re: [PATCH v2] MINOR: config: rhttp: Don't require SSL when attach-srv name parsing

2024-05-22 Thread William Manley
On Tue, May 14, 2024, at 3:48 PM, Amaury Denoyelle wrote: > On Wed, May 08, 2024 at 11:43:11AM +0100, William Manley wrote: > > An attach-srv config line usually looks like this: > > tcp-request session attach-srv be/srv name ssl_c_s_dn(CN) > > while a rhttp server line usually looks like

Re: [PATCH] CI: scripts/build-ssl.sh: loudly fail on unsupported platforms

2024-05-22 Thread William Lallemand
On Wed, May 15, 2024 at 09:41:42PM +0200, Ilia Shipitsin wrote: > Subject: [PATCH] CI: scripts/build-ssl.sh: loudly fail on unsupported > platforms > --- > scripts/build-ssl.sh | 4 > 1 file changed, 4 insertions(+) > > diff --git a/scripts/build-ssl.sh b/scripts/build-ssl.sh > index

Haproxy Technologies - need people?

2024-05-22 Thread Xavier Ziller
Hi there, Curious if Haproxy Technologies could use help completing extra work in your company. We’re like a plug-and-play department that adds extra resources within your business (without having to hire). Help with Marketing, Operations, Research, Virtual Assistance, Customer Service & more.

Re: [PATCH v2] MINOR: config: rhttp: Don't require SSL when attach-srv name parsing

2024-05-22 Thread Amaury Denoyelle
On Tue, May 14, 2024 at 04:48:16PM +0200, Amaury Denoyelle wrote: > On Wed, May 08, 2024 at 11:43:11AM +0100, William Manley wrote: > > An attach-srv config line usually looks like this: > > tcp-request session attach-srv be/srv name ssl_c_s_dn(CN) > > while a rhttp server line usually looks

[ANNOUNCE] haproxy-3.0-dev12

2024-05-18 Thread Willy Tarreau
Hi, HAProxy 3.0-dev12 was released on 2024/05/18. It added 54 new commits after version 3.0-dev11. In terms of bugs, we're starting to scratch the low importance or less visible stuff, which generally is a good hint that we're getting close to have something releasable. We've also fixed a few

haproxy.org : Need a Digital Marketing services in 2024

2024-05-17 Thread Connor Norris
Hi *haproxy.org ,* Greetings! I am sending this email to let you know that we are offering *SEO*, *website design, development, Re-design, Revamp, Web Application, Web Portal, Mobile Websites, E-commerce sites, CMS Websites,Logo Design* at *very competitive prices.* If

Re: FCGI calls return 500 with "IH" Stream State

2024-05-16 Thread Aleksandar Lazic
Hi. I have added fcgi trace ``` global   log stdout format raw daemon debug   pidfile /data/haproxy/run/haproxy.pid   # maxconn  auto config from hap   # nbthread auto config from hap   master-worker   #tune.comp.maxlevel 5   expose-experimental-directives   trace fcgi sink stdout  

FCGI calls return 500 with "IH" Stream State

2024-05-16 Thread Aleksandar Lazic
Hi. I have a strange behavior with HAProxy and FCGI PHP App. When I call an admin URL returns HAProxy a 500, after a refresh of the same page returns the HAProxy 200. ``` 10.128.2.35:39684 [16/May/2024:14:54:26.229] craft-cms fcgi-servers/craftcms1 0/0/0/-1/1138 500 15416 - - IH-- 2/2/0/0/0

[PATCH v2] FEATURE: add opt-in MPTCP support

2024-05-16 Thread Dorian Craps
From: Dorian Craps Multipath TCP (MPTCP), standardized in RFC8684 [1], is a TCP extension that enables a TCP connection to use different paths. Multipath TCP has been used for several use cases. On smartphones, MPTCP enables seamless handovers between cellular and Wi-Fi networks while

[PATCH] CI: scripts/build-ssl.sh: loudly fail on unsupported platforms

2024-05-15 Thread Ilia Shipitsin
--- scripts/build-ssl.sh | 4 1 file changed, 4 insertions(+) diff --git a/scripts/build-ssl.sh b/scripts/build-ssl.sh index 608d6beb1..d8cbc97e8 100755 --- a/scripts/build-ssl.sh +++ b/scripts/build-ssl.sh @@ -53,6 +53,10 @@ build_openssl () { 'Linux')

[PATCH 2/2] BUILD: switch to using macros HAVE_PTHREAD_GETCPUCLOCKID

2024-05-15 Thread Ilia Shipitsin
--- include/haproxy/signal-t.h | 5 - src/clock.c| 19 --- src/wdt.c | 6 -- 3 files changed, 16 insertions(+), 14 deletions(-) diff --git a/include/haproxy/signal-t.h b/include/haproxy/signal-t.h index 85d4b3396..4ae856a97 100644 ---

[PATCH 0/2] RFC: introducing HAVE_PTHREAD_GETCPUCLOCKID macro

2024-05-15 Thread Ilia Shipitsin
I think it needs some discussion whether this can be actual improvement or rather caveat itself. while it looks like a good idea, I'm afraid that once "#include " is accidently lost, #ifdef HAVE_PTHREAD_GETCPUCLOCKID will silently switch to opposite without any visible error Ilia Shipitsin

[PATCH 1/2] BUILD: introduce HAVE_PTHREAD_GETCPUCLOCKID flag

2024-05-15 Thread Ilia Shipitsin
pthread_getcpuclockid() is optional POSIX function present iff _POSIX_THREAD_CPUTIME >= 0 thanks to Miroslav Zagorac: https://docs.oracle.com/cd/E88353_01/html/E37842/unistd-3head.html "If a symbolic constant is defined with the value -1, the option is not supported. Headers, data types, and

Re: [PATCH] DOC: Update UUID references to RFC 9562

2024-05-15 Thread Willy Tarreau
On Sun, May 12, 2024 at 05:08:34PM +0200, Tim Duesterhus wrote: > When support for UUIDv7 was added in commit > aab6477b67415c4cc260bba5df359fa2e6f49733 > the specification still was a draft. > > It has since been published as RFC 9562. Excellent timing ;-) Now merged, thank you Tim! Willy

Re: Meeting with LML Studios

2024-05-15 Thread M Sami Kerrouche
Hi Guys, Was this something you needed? I'd appreciate an answer. Happy to help. Best wishes, Sami On Mon, May 6, 2024 at 1:10 PM M Sami Kerrouche < s...@londonmedialounge.co.uk> wrote: > Hi, > > I am waiting for you on our call that you booked. > > Let me know if you'd like to reschedule. >

Re: [PATCH v2] MINOR: config: rhttp: Don't require SSL when attach-srv name parsing

2024-05-14 Thread Amaury Denoyelle
On Wed, May 08, 2024 at 11:43:11AM +0100, William Manley wrote: > An attach-srv config line usually looks like this: > tcp-request session attach-srv be/srv name ssl_c_s_dn(CN) > while a rhttp server line usually looks like this: > server srv rhttp@ sni req.hdr(host) > The server sni

Re: [PATCH 1/2] CI: reduce ASAN log redirection umbrella size

2024-05-13 Thread Илья Шипицин
пн, 13 мая 2024 г. в 11:29, William Lallemand : > On Thu, May 09, 2024 at 10:24:55PM +0200, Илья Шипицин wrote: > > sorry for th delay. > > > > indeed, it's better to drop asan redirection. I sent a patch to the list. > > > > for my defence I can say that in my experiments asan.log worked as >

Re: [PATCH 0/1] CI: drop asan.log umbrella for good

2024-05-13 Thread William Lallemand
On Thu, May 09, 2024 at 10:19:17PM +0200, Ilia Shipitsin wrote: > for some reasons it appeared to be a good idea > to collect ASAN log separately from VTest error logs, > but also it appeared to work poorly in real life (compared to > specially prepared synthetic environments). > > let drop

Re: [PATCH 1/2] CI: reduce ASAN log redirection umbrella size

2024-05-13 Thread William Lallemand
On Thu, May 09, 2024 at 10:24:55PM +0200, Илья Шипицин wrote: > sorry for th delay. > > indeed, it's better to drop asan redirection. I sent a patch to the list. > > for my defence I can say that in my experiments asan.log worked as expected > :) > No worries, we had a change of distribution

Instalacja pv

2024-05-13 Thread Kamil Bargielewicz
Dzień dobry, czy są Państwo otwarci na niezobowiązującą rozmowę na temat fotowoltaiki? Jako firma specjalizująca się w instalacji i serwisie najlepszych jakościowo paneli słonecznych na rynku chciałbym przedstawić propozycję, jaką wspólnie z zespołem przygotowaliśmy dla Państwa obiektu. Będę

[PATCH] DOC: Update UUID references to RFC 9562

2024-05-12 Thread Tim Duesterhus
When support for UUIDv7 was added in commit aab6477b67415c4cc260bba5df359fa2e6f49733 the specification still was a draft. It has since been published as RFC 9562. This patch updates all UUID references from the obsoleted RFC 4122 and the draft for RFC 9562 to the published RFC 9562. ---

Haproxy Technologies, Getting in touch.

2024-05-11 Thread Oliver Gill
Hi there, Ever found that Haproxy Technologies gets more calls than you’re able answer? I’m with Troacer: We can be an extension of your business that answers incoming calls on your behalf: Live Receptionist, Servicing Customers, Scheduling Appointments, Sales & more. Would it be worth checking

Production House for a Cost of 1 Videographer

2024-05-10 Thread Sami Kerrouche
Hi, Not sure if you saw my previous emails, I want to make sure you understand how the industry is looking right now.  Either hire a videographer or work with a production house (an extension of your marketing team) for the same price. The choice is your  Working with a professional

[ANNOUNCE] haproxy-3.0-dev11

2024-05-10 Thread Willy Tarreau
Hi, HAProxy 3.0-dev11 was released on 2024/05/10. It added 43 new commits after version 3.0-dev10. Another very calm release, thanks to two days off here in France, combined with the return of the sun today :-) Some 3.0 regressions were fixed, such as the broken logs over TCP after recent ring

AW: [EXT] Re: error HAproxy with Galera Cluster v4

2024-05-10 Thread Marno Krahmer
Hey, There actually is some stuff in the haproxy documentation about this: https://docs.haproxy.org/2.9/configuration.html#4-option%20mysql-check MySQL will block a client host when it does more unsuccessful authentication requests than configured in the global variable “max_connect_errors”.

Re: error HAproxy with Galera Cluster v4

2024-05-10 Thread Willy Tarreau
Hello, On Fri, May 10, 2024 at 12:00:17PM +, Iglesias Paz, Jaime wrote: > Hey guys, I have a problem with HAProxy and Galera Cluster v4 MySQL (3 > nodes). I boot the HAProxy server and it returns the following error: > > may 10 13:48:20 phaproxysql1 haproxy[661]: Proxy stats started. > may

error HAproxy with Galera Cluster v4

2024-05-10 Thread Iglesias Paz, Jaime
Hey guys, I have a problem with HAProxy and Galera Cluster v4 MySQL (3 nodes). I boot the HAProxy server and it returns the following error: may 10 13:48:20 phaproxysql1 haproxy[661]: Proxy stats started. may 10 13:48:20 phaproxysql1 haproxy[661]: Proxy stats started. may 10 13:48:20

Proszę o kontakt

2024-05-10 Thread Marcin Gard
Dzień dobry, Czy jest możliwość nawiązania współpracy z Państwem? Z chęcią porozmawiam z osobą zajmującą się działaniami związanymi ze sprzedażą. Pomagamy skutecznie pozyskiwać nowych klientów. Zapraszam do kontaktu. Pozdrawiam serdecznie Marcin Gard

Re: some QUIC questions

2024-05-10 Thread Amaury Denoyelle
On Mon, May 06, 2024 at 08:16:34PM +0200, Björn Jacke wrote: > On 06.05.24 15:34, Shawn Heisey wrote: > > On 5/6/24 06:02, Björn Jacke wrote: > > > frontend ft_443 > > >    bind :::443 ssl crt /ssl/combined.pem > > >    bind quic6@:443 ssl crt /ssl/combined.pem alpn h3 > > >    option

[PATCH 0/1] CI: drop asan.log umbrella for good

2024-05-09 Thread Ilia Shipitsin
for some reasons it appeared to be a good idea to collect ASAN log separately from VTest error logs, but also it appeared to work poorly in real life (compared to specially prepared synthetic environments). let drop asan.log redirection Ilia Shipitsin (1): CI: drop asan.log umbrella completely

[PATCH 1/1] CI: drop asan.log umbrella completely

2024-05-09 Thread Ilia Shipitsin
asan.log redirection appeared to work poorly, let's cease that practice for good. ML: https://www.mail-archive.com/haproxy@formilux.org/msg44844.html --- .github/workflows/vtest.yml | 9 - 1 file changed, 9 deletions(-) diff --git a/.github/workflows/vtest.yml

Bussiness inquiry[Backlink Expert]

2024-05-08 Thread Fatima
*Hey,* *Are you want to promote your websites or want on google,no need for further search.here you will get google news sites guest posts with do/follow backlinks. for getting the first position,y*Bussiness Inquiry [BackLinks Expert]*ou* *need to get high/authority guest posts with do/ follow

Re: [PATCH] FEATURE: Adding MPTCP with option to disable it and fall-back to TCP

2024-05-08 Thread Willy Tarreau
On Wed, May 08, 2024 at 01:19:22PM +, Dorian Craps wrote: > first of all, thank you for your interest. > > I already made a version with an option to enable MPTCP > -https://github.com/CrapsDorian/haproxy/pull/1 > > I'm working on a new version with "mptcp@address" as Willy requested. OK,

RE: [PATCH] FEATURE: Adding MPTCP with option to disable it and fall-back to TCP

2024-05-08 Thread Dorian Craps
first of all, thank you for your interest. I already made a version with an option to enable MPTCP -https://github.com/CrapsDorian/haproxy/pull/1 I'm working on a new version with "mptcp@address" as Willy requested. Dorian

[PATCH v2] MINOR: config: rhttp: Don't require SSL when attach-srv name parsing

2024-05-08 Thread William Manley
An attach-srv config line usually looks like this: tcp-request session attach-srv be/srv name ssl_c_s_dn(CN) while a rhttp server line usually looks like this: server srv rhttp@ sni req.hdr(host) The server sni argument is used as a key for looking up connection in the connection pool.

Re: [PATCH] MINOR: config: rhttp: Downgrade error on attach-srv name parsing

2024-05-08 Thread William Manley
On Thu, Apr 25, 2024, at 2:07 PM, Amaury Denoyelle wrote: > Sorry for the delay. We have rediscussed this issue this morning and > here is my answer on your patch. Sorry for the even larger delay in responding :). Thanks for looking at this. > It is definitely legitimate to want to be able to

Faktoring

2024-05-08 Thread Bartosz Rudnicki
Dzień dobry, rozważali Państwo wybór finansowania, które spełni potrzeby firmy, zapewniając natychmiastowy dostęp do gotówki, bez zbędnych przestojów? Przygotowaliśmy rozwiązania faktoringowe dopasowane do Państwa branży i wielkości firmy, dzięki którym, nie muszą Państwo martwić się o

Bussiness inquiry[Backlink Expert]

2024-05-07 Thread Fatima
*Hey,* *Are you want to promote your websites or want on google,no need for further search.here you will get google news sites guest posts with do/follow backlinks. for getting the first position,y*Bussiness Inquiry [BackLinks Expert]*ou* *need to get high/authority guest posts with do/ follow

Re: How to configure DH groups for TLS 1.3

2024-05-07 Thread Tristan
Hi Dominik, On Thu, 2 May 2024 at 17:14, Froehlich, Dominik wrote: The closest I’ve gotten is the “curves” property: https://docs.haproxy.org/2.8/configuration.html#5.1-curves However, I think it only restricts the available elliptic curves in a ECDHE handshake, but it does not prevent a

Re: [PR] fix show-sess-to-flags.sh cob fd state

2024-05-06 Thread Willy Tarreau
Hi! On Tue, May 07, 2024 at 02:23:02AM +, PR Bot wrote: > Author: zhibin.zhu > Number of patches: 1 > > This is an automated relay of the Github pull request: >fix show-sess-to-flags.sh cob fd state (...) > From 95be08c6f4f382ec1b0e34765d4c1f09ddcdebb6 Mon Sep 17 00:00:00 2001 > From:

[PR] fix show-sess-to-flags.sh cob fd state

2024-05-06 Thread PR Bot
Dear list! Author: zhibin.zhu Number of patches: 1 This is an automated relay of the Github pull request: fix show-sess-to-flags.sh cob fd state Patch title(s): fix show-sess-to-flags.sh cob fd state Link: https://github.com/haproxy/haproxy/pull/2560 Edit locally: wget

Re: Error While deviceatlas 3.2.2 and haproxy 2.9.6 make from source

2024-05-06 Thread David CARLIER
hi and sorry for the long reply. I will let you know once it is officially release, it needs to pass our QA test still. Kind regards. On Mon, 6 May 2024 at 22:52, Mahendra Patil wrote: > any update when we can get 3.2.3 release > > On Wed, Apr 3, 2024 at 10:51 AM David CARLIER wrote: > >>

Re: Error While deviceatlas 3.2.2 and haproxy 2.9.6 make from source

2024-05-06 Thread Mahendra Patil
any update when we can get 3.2.3 release On Wed, Apr 3, 2024 at 10:51 AM David CARLIER wrote: > Hi all, > > Thanks for your report. This is a known issue the 3.2.3 release is > scheduled within this month. > > Regards. > > On Wed, 3 Apr 2024 at 04:38, Willy Tarreau wrote: > >> Hello, >> >> On

Re: some QUIC questions

2024-05-06 Thread Björn Jacke
On 06.05.24 15:34, Shawn Heisey wrote: On 5/6/24 06:02, Björn Jacke wrote: frontend ft_443    bind :::443 ssl crt /ssl/combined.pem    bind quic6@:443 ssl crt /ssl/combined.pem alpn h3    option tcp-smart-accept    http-after-response add-header alt-svc 'h3=":443"; ma=600; persistent=1'

Re: some QUIC questions

2024-05-06 Thread Shawn Heisey
On 5/6/24 06:02, Björn Jacke wrote: frontend ft_443   bind :::443 ssl crt /ssl/combined.pem   bind quic6@:443 ssl crt /ssl/combined.pem alpn h3   option tcp-smart-accept   http-after-response add-header alt-svc 'h3=":443"; ma=600; persistent=1' frontend ft_quic_test     mode tcp    

Meeting with LML Studios

2024-05-06 Thread M Sami Kerrouche
Hi, I am waiting for you on our call that you booked. Let me know if you'd like to reschedule. Here's my phone number, call me for a quicker response. +44 7577 295184 Best wishes, *Sami Kerrouche* Managing Director London Media Lounge Ltd 16a/17a Windsor St Uxbridge Middx UB8 1AB

Re: [PATCH] FEATURE: Adding MPTCP with option to disable it and fall-back to TCP

2024-05-06 Thread Björn Jacke
Hi, I came up a while ago with a patchset for MPTCP support for HAProxy also, see https://github.com/haproxy/haproxy/issues/1028 Back then I also discussed some ideas with Willy how to implement it more elegantly in HAProxy. It's still somewhere on my todo list but unfortunately I didn't

  1   2   3   4   5   6   7   8   9   10   >