4129 links
740 private links
  • Doo's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Jouer les vidéos
Links per page: 20 50 100
page 3 / 3
Newer►
55 results tagged haproxy x
  • thumbnail
    Load-balancing Websockets on EC2 — Medium

    la stratégie est intéressante, pour le scalling de websockets.
    Le fait d'utiliser ELB en frontal, je pense que ça évite d'avoir à utiliser keepalived ou such avec une VIP. Du coup, HAproxy > * as usual :)

    February 14, 2015 11:39:06 AM GMT+01:00 * - permalink -
    QRCode
    - https://medium.com/@Philmod/load-balancing-websockets-on-ec2-1da94584a5e9
    haproxy loadbalancing scalability
  • Haproxy ssl configuration - install root and intermediate certificate

    une petite doc memento pour les intermediate CA dans haproxy

    December 30, 2014 09:38:05 AM GMT+01:00 * - permalink -
    QRCode
    - http://www.drawbackz.com/stack/78293/haproxy-ssl-configuration-install-root-and-intermediate-certificate.html
    haproxy ssl
  • thumbnail
    Use a load-balancer as a first row of defense against DDOS | HAProxy Technologies – Aloha Load Balancer

    Hop, un bon article sur les rate-limit de request haproxy

    December 6, 2014 01:24:49 PM GMT+01:00 * - permalink -
    QRCode
    - http://blog.haproxy.com/2012/02/27/use-a-load-balancer-as-a-first-row-of-defense-against-ddos/
    haproxy
  • thumbnail
    HAProxy and sslv3 poodle vulnerability | HAProxy Technologies – Aloha Load Balancer
    October 21, 2014 01:34:57 PM GMT+02:00 * - permalink -
    QRCode
    - http://blog.haproxy.com/2014/10/15/haproxy-and-sslv3-poodle-vulnerability/
    haproxy poodle
  • thumbnail
    Mitigating the shellshock vulnerability with HAProxy | HAProxy Technologies – Aloha Load Balancer

    haproxy, toujours pratique :)

    October 6, 2014 11:49:38 AM GMT+02:00 * - permalink -
    QRCode
    - http://blog.haproxy.com/2014/09/30/mitigating-the-shellshock-vulnerability-with-haproxy/
    haproxy shellshock
  • Load Balancing with HAProxy | Servers for Hackers

    une belle explication, même si elle reste basique !

    August 30, 2014 12:06:50 PM GMT+02:00 * - permalink -
    QRCode
    - https://serversforhackers.com/editions/2014/07/15/haproxy/
    haproxy
  • HAProxy packages for Debian and Ubuntu

    via blue, thx :p

    apt-get install debian-keyring
    gpg --no-default-keyring --keyring=/usr/share/keyrings/debian-keyring.gpg \
    --export bernat@debian.org | sudo apt-key add -
    tee /etc/apt/sources.list.d/haproxy.list <<EOF
    deb http://haproxy.debian.net wheezy-backports main
    EOF

    apt-get update
    aptitude upgrade haproxy

    May 26, 2014 01:15:34 PM GMT+02:00 * - permalink -
    QRCode
    - http://haproxy.debian.net/
    haproxy
  • thumbnail
    Howto write apache ProxyPass* rules in HAProxy | HAProxy Technologies – Aloha Load Balancer

    j'ai pas fait comme ça, je suis parti sur

    # ACL
    acl my_host              hdr(host) -i hostname
    acl my_path            path_beg /path
    # Proxy_pass
    http-request set-header X-Location-Path %[capture.req.uri]  if my_path my_host
    http-request replace-header X-Location-Path ^(\/path/)(.*) \2  if my_path my_host
    http-request set-uri https://hostname/%[hdr(X-Location-Path)] if my_path my_host
    April 30, 2014 01:52:29 PM GMT+02:00 * - permalink -
    QRCode
    - http://blog.haproxy.com/2014/04/28/howto-write-apache-proxypass-rules-in-haproxy/
    haproxy
  • FTP Load-Balanced through haproxy - techlog

    frontend foxtrot-tango-papa-control
    bind :21
    default_backend ftp_server_pool
    frontend foxtrot-tango-papa01
    bind
    :10001-10750
    default_backend foxtrot_tango_papa01
    backend ftp_server_pool
    server foxtrot-tango-papa01 $ip check port 21 inter 10s rise 1 fall 2
    backend foxtrot_tango_papa01
    server foxtrot-tango-papa01 $ip check port 21 inter 10s rise 1 fall 2
    Il faut encore que je voie pourquoi il fautl e debug

    April 29, 2014 08:57:29 PM GMT+02:00 * - permalink -
    QRCode
    - http://www.taiter.com/techlog/2012/09/ftp-load-balanced-through-haproxy.html
    haproxy
  • thumbnail
    Load Balancing and Proxy Configuration

    cette doc est pas mal faite du tout, même si les confs sont light

    December 25, 2013 06:09:19 PM GMT+01:00 - permalink -
    QRCode
    - http://docs.basho.com/riak/1.3.1/cookbooks/Load-Balancing-and-Proxy-Configuration/
    nginx haproxy doc howto tuto tool linux
  • thumbnail
    somerorbay.com - Nginx Behind Haproxy x-forwarded-for getting real client ip - somerorbay.com

    et là pour le rpaf apache pour la lecture du header

    December 1, 2013 02:56:05 PM GMT+01:00 - permalink -
    QRCode
    - http://www.somerorbay.com/vps-and-dedicated/nginx-behind-haproxy-x-forwarded-for-getting-real-client-ip
    apache nginx haproxy linux reverse_proxy
  • thumbnail
    Client IP with X-Forwarded-For across multiple proxies | Andrew Boring

    l'article qui me manquait pour ma conf :)

    December 1, 2013 02:55:03 PM GMT+01:00 - permalink -
    QRCode
    - http://www.andrewboring.com/technotes/client-ip-x-forwarded-across-multiple-proxies
    nginx haproxy reverse_proxy
  • thumbnail
    haproxy SSH et HTTPS sur le même-port - bouil.org

    exemple de multiplexage du port 443 qui pourra tjs servir :)

    December 1, 2013 12:58:27 PM GMT+01:00 - permalink -
    QRCode
    - http://www.bouil.org/w/HAProxy-SSH-et-HTTPS-sur-le-meme-port/
    haproxy multiplex
  • thumbnail
    How to compile HAProxy from source and setup a basic configuration
    November 6, 2013 03:23:12 PM GMT+01:00 - permalink -
    QRCode
    - http://louwrentius.com/how-to-compile-haproxy-from-source-and-setup-a-basic-configuration.html
    haproxy doc tuto linux tool
  • thumbnail
    Terminaison SSL : stunnel, nginx & stud, second round | Vincent Bernat
    September 13, 2013 12:07:03 PM GMT+02:00 - permalink -
    QRCode
    - http://vincent.bernat.im/fr/blog/2011-ssl-benchmark-round2.html
    openssl loadbalancing tunning perf nginx haproxy
Links per page: 20 50 100
page 3 / 3
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation