4339 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
    2022年4月27日 GMT+2 下午2:00:24 - 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.

    2021年5月12日 GMT+2 下午12:33:13 - 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
    2019年9月17日 GMT+2 下午2:37:35 - 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

    2018年3月16日 GMT+1 上午11:56:12 * - permalink - archive.org - https://gist.github.com/Iristyle/5005653
    haproxy
  • [ANNOUNCE] haproxy-1.7.0

    woot

    2016年12月11日 GMT+1 下午6:18:24 - 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..)

    2016年7月6日 GMT+2 下午10:16:20 - 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

    2016年7月4日 GMT+2 上午9:54:36 - 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

    2016年7月1日 GMT+2 上午10:03:47 - 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
    2016年4月18日 GMT+2 下午10:47:50 - permalink - archive.org - https://github.com/abulimov/haproxy-lint/blob/master/README.md
    haproxy lint syntax
  • thumbnail
    neurogeek/haproxyctl: HAProxy control tool

    via Doo

    2016年2月19日 GMT+1 下午3:27:34 - 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

    2016年1月21日 GMT+1 下午4:00:53 - 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.

    2015年8月15日 GMT+2 下午3:22:57 - 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

    2015年5月25日 GMT+2 上午11:24:46 - 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.

    2015年2月21日 GMT+1 下午2:35:05 - 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
    2015年1月1日 GMT+1 下午3:12:42 - 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
    2015年1月1日 GMT+1 下午3:07:36 - 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

    2014年10月1日 GMT+2 上午9:57:22 - 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
    2014年7月21日 GMT+2 下午5:02:09 - 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
    2014年6月6日 GMT+2 下午4:45:53 - 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
    2014年5月26日 GMT+2 下午10:36:16 - 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