Skip to content

Instantly share code, notes, and snippets.

global
stats socket /var/run/haproxy/api.sock user haproxy group haproxy mode 660 level admin expose-fd listeners
@haproxytechblog
haproxytechblog / blog20210802-01.sh
Created August 2, 2021 14:54
How to Run HAProxy with Docker
$ sudo docker network create --driver=bridge mynetwork
@haproxytechblog
haproxytechblog / blog20210705-01.cfg
Last active July 13, 2021 21:30
HAProxy Configuration Basics: Load Balance Your Servers
defaults
mode http
timeout client 10s
timeout connect 5s
timeout server 10s
timeout http-request 10s
frontend myfrontend
bind 127.0.0.1:80
@haproxytechblog
haproxytechblog / blog20210611-01.yaml
Created June 11, 2021 15:18
Run the HAProxy Kubernetes Ingress Controller Outside of Your Kubernetes Cluster
apiVersion: operator.tigera.io/v1
kind: Installation
metadata:
name: default
spec:
# Configures Calico networking.
calicoNetwork:
bgp: Enabled
# Note: The ipPools section cannot be modified post-install.
@haproxytechblog
haproxytechblog / blog20210601-01.hcl
Created June 1, 2021 21:44
Consul Service Discovery for HAProxy
datacenter = "dc1"
server = true
data_dir = "/var/lib/consul/"
bind_addr = "192.168.50.21"
client_addr = "192.168.50.21"
bootstrap = true
bootstrap_expect = 1
ui_config {
enabled = true
@haproxytechblog
haproxytechblog / blog20210513-01.cfg
Last active May 14, 2021 14:20
Announcing HAProxy 2.4
tcp-request content reject unless { req.payload(0,0),mqtt_is_valid }
@haproxytechblog
haproxytechblog / blog20210510-01.sh
Last active May 10, 2021 15:38
Announcing HAProxy Data Plane API 2.3
$ sudo dataplaneapi \
--host 127.0.0.1 \
--port 5555 \
--haproxy-bin /usr/sbin/haproxy \
--config-file /etc/haproxy/haproxy.cfg \
--reload-delay 5 \
--reload-cmd "service haproxy reload" \
--restart-cmd "service haproxy restart" \
--userlist haproxy-dataplaneapi \
--transaction-dir /tmp/haproxy
@haproxytechblog
haproxytechblog / blog20210503-01.yaml
Created May 3, 2021 17:20
Announcing HAProxy Kubernetes Ingress Controller 1.6
backend-config-snippet: |
http-request deny if !{ src 127.0.0.1 10.0.0.0/8 1.2.3.4/24 }
@haproxytechblog
haproxytechblog / blog20210423-01.sh
Last active April 23, 2021 13:44
Autoscaling with the HAProxy Kubernetes Ingress Controller and KEDA
$ helm repo add prometheus-community \
https://prometheus-community.github.io/helm-charts
$ helm repo update
$ helm install prometheus prometheus-community/prometheus
@haproxytechblog
haproxytechblog / blog20210415-01.sh
Created April 15, 2021 18:36
Power Your Consul Service Mesh with HAProxy
$ helm repo add hashicorp https://helm.releases.hashicorp.com
$ helm repo update
$ helm install consul hashicorp/consul \
--set global.name=consul \
--set connect=true \
--set server.replicas=1 \
--set server.bootstrapExpect=1 \
--version 0.31.1