HAProxy: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 16: Line 16:


==Reverse Proxy==
==Reverse Proxy==
  frontend http-in
  frontend chorke-frontend
     bind *:80
     bind *:80
     mode http
     mode http
     acl path-prefix-is-minio  path_beg /minio/
     acl path-prefix-is-minio  path_beg /minio/
     use_backend minio if path-prefix-is-minio
     use_backend minio-backend if path-prefix-is-minio
   
   
  backend minio
  backend minio-backend
     server minio1 127.0.0.1:9801
     server minio1 127.0.0.1:9801
     mode http
     mode http

Revision as of 11:24, 6 April 2023

sudo apt install haproxy
sudo apt install --no-install-recommends software-properties-common
sudo add-apt-repository ppa:vbernat/haproxy-2.4 -y
sudo apt install haproxy=2.4.\*
haproxy -v

Load Balancing

frontend chorke-portals
   bind *:80
   mode http
   default_backend chorke-servers

backend chorke-servers
   server minio1 127.0.0.1:1983
   mode http

Reverse Proxy

frontend chorke-frontend
   bind *:80
   mode http
   acl path-prefix-is-minio  path_beg /minio/
   use_backend minio-backend if path-prefix-is-minio

backend minio-backend
   server minio1 127.0.0.1:9801
   mode http

Knowledge

sudo ss -tulwn | grep LISTEN
sudo ss -tulpn | grep LISTEN
sudo ss -tulpn | grep LISTEN | grep sshd
sudo ss -tulpn | grep LISTEN | grep minio
sudo ss -tulpn | grep LISTEN | grep resolve

References