Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Add HAProxy configuration example #43

@schklom

Description

@schklom

I think the equivalent of

proxy_connect_timeout   10m;
proxy_send_timeout      10m;
proxy_read_timeout      10m;

in HAProxy config is

timeout connect 10m
timeout client 10m
timeout server 10m

According to official docs,

timeout client <timeout>
Set the maximum inactivity time on the client side.

timeout connect <timeout>
Set the maximum time to wait for a connection attempt to a server to succeed.

timeout server <timeout>
Set the maximum inactivity time on the server side.

I believe buffering is disabled by default in HAProxy, so there is nothing to do there.

I'm bad with Nginx. Do the timeout descriptions match the config for Nginx?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions