4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 2
21 results tagged haproxy x
  • thumbnail
    Extending HAProxy with the Stream Processing Offload Engine - HAProxy Technologies
    27 avril 2022 à 14:00:24 UTC+2 - permalink - archive.org - https://www.haproxy.com/blog/extending-haproxy-with-the-stream-processing-offload-engine/
    haproxy spoe
  • Note: haproxy

    Ces derniers jours je suis en train de voir pour remplacer mon reverse proxy perso qui était resté en haproxy, déplacé dans un container à la va vite..

    J'ai donc commencé à expérimenter traefik et ça semble faire le boulot. J'aime beaucoup le côté dynamique avec les labels sur les containers.

    Il remplit tous les rôles de mon haproxy :

    • offloading ssl
    • basic auth http pour certains backend
    • et puis voilà c'est tout en fait

    Autre avantage, il intègre la génération/renouvellement des certificats ssl ce qui va me permettre de virer un vieux script en bash (qui faisait ça très bien, mais au moins ce sera + clean)

    Seule contrainte, je me demande si je peux reverse vers un backend qui ne serait pas du docker. Peut être en mettant de la conf en dur.

    12 mai 2021 à 12:33:13 UTC+2 - permalink - archive.org - https://links.infomee.fr/?P8uckQ
    docker haproxy traefik
  • thumbnail
    Load Balancing, Affinity, Persistence, Sticky Sessions: What You Need to Know - HAProxy Technologies
    17 septembre 2019 à 14:37:35 UTC+2 - permalink - archive.org - https://www.haproxy.com/blog/load-balancing-affinity-persistence-sticky-sessions-what-you-need-to-know/
    haproxy sticky
  • thumbnail
    Configure HAProxy for userlists

    Create SHA512 passwords

    # make sure to use a leading space so that the command is not stored in your bash history!!
     mkpasswd -m sha-512 password1
    # generates -> $6$yMgsow58.g/Z$mBjHfdVzqcF/LN.iwV23Eyqg.yGPTsp9pOwaStsJ6c4I4zL7BhucVVAkv5guf7OVRr8Pw0mHF4NrWBRCG5ci7/
     mkpasswd -m sha-512 password2
    # generates -> $6$RZ86vRkQ$aRKN1HOsk6bDHBbMhS7jSo/p1NGFl4PvwY3KpU.72i./LvITi41nL84EkxOFXl.6Bmhynj/L7pYbfF0rUHtOB0

    Edit /etc/haproxy/haproxy.cfg

    userlist UsersFor_Ops
      group AdminGroup users userone,usertwo
      user userone password $6$yMgsow58.g/Z$mBjHfdVzqcF/LN.iwV23Eyqg.yGPTsp9pOwaStsJ6c4I4zL7BhucVVAkv5guf7OVRr8Pw0mHF4NrWBRCG5ci7/
      user usertwo password $6$RZ86vRkQ$aRKN1HOsk6bDHBbMhS7jSo/p1NGFl4PvwY3KpU.72i./LvITi41nL84EkxOFXl.6Bmhynj/L7pYbfF0rUHtOB0


    ...


    backend myserver
        mode    http
        server  myserver   1.1.1.1:80
        acl AuthOkay_Ops http_auth(UsersFor_Ops)
        http-request auth realm MyAuthRealm if !AuthOkay_Ops

    16 mars 2018 à 11:56:12 UTC+1 * - permalink - archive.org - https://gist.github.com/Iristyle/5005653
    haproxy
  • [ANNOUNCE] haproxy-1.7.0

    woot

    11 décembre 2016 à 18:18:24 UTC+1 - permalink - archive.org - http://about://reader?url=https%3A%2F%2Fwww.mail-archive.com%2Fhaproxy%40formilux.org%2Fmsg24244.html
    haproxy
  • Use a load-balancer as a first row of defense against DDOS

    L'utilisation des stick-table dans haproxy. On peut s'en servir comme compteurs pour empêcher les abus (ddos, crawl..)

    6 juillet 2016 à 22:16:20 UTC+2 - permalink - archive.org - http://blog.haproxy.com/2012/02/27/use-a-load-balancer-as-a-first-row-of-defense-against-ddos/
    crawl haproxy limit rate
  • HAProxy Documentation Converter

    Une autre manière de parcourir la doc haproxy
    Un peu plus pratique avec le menu à gauche ^^

    via VG

    4 juillet 2016 à 09:54:36 UTC+2 - permalink - archive.org - http://cbonte.github.io/haproxy-dconv/
    conf haproxy
  • thumbnail
    Web application name to backend mapping in HAProxy | HAProxy Technologies – Aloha Load Balancer

    Very convenient way to confgure haproxy

    via VG Doo

    1 juillet 2016 à 10:03:47 UTC+2 - permalink - archive.org - http://blog.haproxy.com/2015/01/26/web-application-name-to-backend-mapping-in-haproxy/
    haproxy map
  • thumbnail
    GitHub · Where software is built
    18 avril 2016 à 22:47:50 UTC+2 - permalink - archive.org - https://github.com/abulimov/haproxy-lint/blob/master/README.md
    haproxy lint syntax
  • thumbnail
    neurogeek/haproxyctl: HAProxy control tool

    via Doo

    19 février 2016 à 15:27:34 UTC+1 - permalink - archive.org - https://github.com/neurogeek/haproxyctl
    api haproxy
  • /ˈTræfɪk/

    Un lb en Go qui peut "surveiller" les backends comme Docker par exemple pour update sa conf

    21 janvier 2016 à 16:00:53 UTC+1 - permalink - archive.org - https://traefik.github.io/
    docker go haproxy lb loadbalancer nginx
  • HAProxy version 1.5.14 - Configuration Manual

    Pour avoir plusieurs certificats

    If a directory name is used instead of a PEM file, then all files found in
    that directory will be loaded in alphabetic order unless their name ends with
    '.issuer' or '.ocsp' (reserved extensions). This directive may be specified
    multiple times in order to load certificates from multiple files or
    directories. The certificates will be presented to clients who provide a valid
    TLS Server Name Indication field matching one of their CN or alt subjects.
    Wildcards are supported, where a wildcard character '' is used instead of the
    first hostname component (eg:
    .example.org matches www.example.org but not
    www.sub.example.org).

    If no SNI is provided by the client or if the SSL library does not support
    TLS extensions, or if the client provides an SNI hostname which does not
    match any certificate, then the first loaded certificate will be presented.
    This means that when loading certificates from a directory, it is highly
    recommended to load the default one first as a file or to ensure that it will
    always be the first one in the directory.

    15 août 2015 à 15:22:57 UTC+2 - permalink - archive.org - http://cbonte.github.io/haproxy-dconv/configuration-1.5.html#5.1-crt
    haproxy ssl
  • Yelp Product & Engineering Blog | True Zero Downtime HAProxy Reloads

    zero downtine restart haproxy

    Avec : qdisc, iptables

    25 mai 2015 à 11:24:46 UTC+2 - permalink - archive.org - http://engineeringblog.yelp.com/2015/04/true-zero-downtime-haproxy-reloads.html
    haproxy qdisc tc
  • Debian -- Details of package libapache2-mod-rpaf in sid

    Je me demandais pourquoi mes allow from x.x.x.x ne marchait plus au niveau de on apache... C'est pourtant con, j'ai un haproxy en frontal maintenant ! donc apache voit tout venir de 127.0.0.1 et les allow ne sont plus valides.

    Pour résoudre le probleme on peut installer ce mod qui va prendre l'ip dans les headers ajoutés par haproxy (x-forwarded-for) et la considérer comme l'ip source.

    21 février 2015 à 14:35:05 UTC+1 - permalink - archive.org - https://packages.debian.org/fr/sid/libapache2-mod-rpaf
    apache haproxy nginx rpaf
  • thumbnail
    Making HAProxy 1.5 replication lag aware in MySQL
    1 janvier 2015 à 15:12:42 UTC+1 - permalink - archive.org - http://www.percona.com/blog/2014/12/18/making-haproxy-1-5-replication-lag-aware-in-mysql/
    haproxy
  • thumbnail
    HAProxy Is Still An Arrow in the Quiver for Those Scaling Apps | The New Stack
    1 janvier 2015 à 15:07:36 UTC+1 - permalink - archive.org - http://thenewstack.io/haproxy-still-an-arrow-in-the-quiver-for-those-scaling-apps/
    haproxy
  • thumbnail
    Mitigating the shellshock vulnerability with HAProxy | HAProxy Technologies – Aloha Load Balancer

    via Doo

    1 octobre 2014 à 09:57:22 UTC+2 - permalink - archive.org - http://blog.haproxy.com/2014/09/30/mitigating-the-shellshock-vulnerability-with-haproxy/
    haproxy shell
  • Percona XtraDB Cluster 5.6, HAProxy and Debian Wheezy 7.0
    21 juillet 2014 à 17:02:09 UTC+2 - permalink - archive.org - http://www.mikemead.me/blog/percona-xtradb-cluster-debian-wheezy
    cluster haproxy mysql
  • binary health check with HAProxy 1.5: php-fpm/fastcgi probe example | HAProxy Technologies – Aloha Load Balancer
    6 juin 2014 à 16:45:53 UTC+2 - permalink - archive.org - http://blog.haproxy.com/2014/06/06/binary-health-check-with-haproxy-1-5-php-fpmfastcgi-probe-example/
    haproxy
  • HAProxy - route by domain name | Sean McGary
    26 mai 2014 à 22:36:16 UTC+2 - permalink - archive.org - http://seanmcgary.com/posts/haproxy---route-by-domain-name
    haproxy
Links per page: 20 50 100
◄Older
page 1 / 2
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation