├── README.md ├── blog ├── building_service_mesh │ ├── README.md │ ├── authorize.lua │ ├── consul-server │ │ └── consul.d │ │ │ └── basic_config.json │ ├── controller.sh │ ├── docker-compose.yml │ ├── redis │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── authorize.lua │ │ ├── controller.sh │ │ └── start.sh │ └── www │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── app.js │ │ ├── authorize.lua │ │ ├── controller.sh │ │ ├── package.json │ │ └── start.sh ├── haproxy_docker_dns_link │ ├── blog_haproxy_dns │ │ ├── Dockerfile │ │ ├── haproxy.cfg │ │ └── haproxy.sh │ └── blog_rsyslogd │ │ ├── Dockerfile │ │ ├── rsyslogd.conf │ │ └── rsyslogd.sh ├── integration_with_consul │ ├── haproxy.conf.by_consul_template │ ├── haproxy.conf.tmpl │ └── haproxy_reload.sh └── ssl_client_certificate_management_at_application_level │ ├── ca.sh │ ├── ca2.sh │ ├── pem_creation.sh │ └── revocation_list_creation.sh ├── configuration_templates ├── exchange2010_https_services_forward.tpl ├── exchange2010_mapi_services.tpl ├── exchange2013_simple_https_load-balancing.tpl ├── genconf.ps1 ├── genconf.sh ├── microsoft_rds_load-balancing.tpl └── tomcat_jsessionid_persistence.tpl ├── logs ├── logrotate.haproxy.conf ├── srv-4xx ├── srv-5xx ├── srv-requests ├── srv-response-time ├── syslog-ng_full_http_url.conf ├── url-404 ├── url-errors ├── url-requests └── url-response-time ├── monitoring └── haproxy.monit └── scripts ├── errorfile_content_length ├── halog_installation ├── haproxy.init.debian ├── haproxy.init.debian7 └── haproxy_update_from_git /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/README.md -------------------------------------------------------------------------------- /blog/building_service_mesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/building_service_mesh/README.md -------------------------------------------------------------------------------- /blog/building_service_mesh/authorize.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/building_service_mesh/authorize.lua -------------------------------------------------------------------------------- /blog/building_service_mesh/consul-server/consul.d/basic_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/building_service_mesh/consul-server/consul.d/basic_config.json -------------------------------------------------------------------------------- /blog/building_service_mesh/controller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/building_service_mesh/controller.sh -------------------------------------------------------------------------------- /blog/building_service_mesh/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/building_service_mesh/docker-compose.yml -------------------------------------------------------------------------------- /blog/building_service_mesh/redis/.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /blog/building_service_mesh/redis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/building_service_mesh/redis/Dockerfile -------------------------------------------------------------------------------- /blog/building_service_mesh/redis/authorize.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/building_service_mesh/redis/authorize.lua -------------------------------------------------------------------------------- /blog/building_service_mesh/redis/controller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/building_service_mesh/redis/controller.sh -------------------------------------------------------------------------------- /blog/building_service_mesh/redis/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/building_service_mesh/redis/start.sh -------------------------------------------------------------------------------- /blog/building_service_mesh/www/.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /blog/building_service_mesh/www/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/building_service_mesh/www/Dockerfile -------------------------------------------------------------------------------- /blog/building_service_mesh/www/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/building_service_mesh/www/app.js -------------------------------------------------------------------------------- /blog/building_service_mesh/www/authorize.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/building_service_mesh/www/authorize.lua -------------------------------------------------------------------------------- /blog/building_service_mesh/www/controller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/building_service_mesh/www/controller.sh -------------------------------------------------------------------------------- /blog/building_service_mesh/www/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/building_service_mesh/www/package.json -------------------------------------------------------------------------------- /blog/building_service_mesh/www/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/building_service_mesh/www/start.sh -------------------------------------------------------------------------------- /blog/haproxy_docker_dns_link/blog_haproxy_dns/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/haproxy_docker_dns_link/blog_haproxy_dns/Dockerfile -------------------------------------------------------------------------------- /blog/haproxy_docker_dns_link/blog_haproxy_dns/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/haproxy_docker_dns_link/blog_haproxy_dns/haproxy.cfg -------------------------------------------------------------------------------- /blog/haproxy_docker_dns_link/blog_haproxy_dns/haproxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/haproxy_docker_dns_link/blog_haproxy_dns/haproxy.sh -------------------------------------------------------------------------------- /blog/haproxy_docker_dns_link/blog_rsyslogd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/haproxy_docker_dns_link/blog_rsyslogd/Dockerfile -------------------------------------------------------------------------------- /blog/haproxy_docker_dns_link/blog_rsyslogd/rsyslogd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/haproxy_docker_dns_link/blog_rsyslogd/rsyslogd.conf -------------------------------------------------------------------------------- /blog/haproxy_docker_dns_link/blog_rsyslogd/rsyslogd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/haproxy_docker_dns_link/blog_rsyslogd/rsyslogd.sh -------------------------------------------------------------------------------- /blog/integration_with_consul/haproxy.conf.by_consul_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/integration_with_consul/haproxy.conf.by_consul_template -------------------------------------------------------------------------------- /blog/integration_with_consul/haproxy.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/integration_with_consul/haproxy.conf.tmpl -------------------------------------------------------------------------------- /blog/integration_with_consul/haproxy_reload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/integration_with_consul/haproxy_reload.sh -------------------------------------------------------------------------------- /blog/ssl_client_certificate_management_at_application_level/ca.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/ssl_client_certificate_management_at_application_level/ca.sh -------------------------------------------------------------------------------- /blog/ssl_client_certificate_management_at_application_level/ca2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/ssl_client_certificate_management_at_application_level/ca2.sh -------------------------------------------------------------------------------- /blog/ssl_client_certificate_management_at_application_level/pem_creation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/ssl_client_certificate_management_at_application_level/pem_creation.sh -------------------------------------------------------------------------------- /blog/ssl_client_certificate_management_at_application_level/revocation_list_creation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/blog/ssl_client_certificate_management_at_application_level/revocation_list_creation.sh -------------------------------------------------------------------------------- /configuration_templates/exchange2010_https_services_forward.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/configuration_templates/exchange2010_https_services_forward.tpl -------------------------------------------------------------------------------- /configuration_templates/exchange2010_mapi_services.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/configuration_templates/exchange2010_mapi_services.tpl -------------------------------------------------------------------------------- /configuration_templates/exchange2013_simple_https_load-balancing.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/configuration_templates/exchange2013_simple_https_load-balancing.tpl -------------------------------------------------------------------------------- /configuration_templates/genconf.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/configuration_templates/genconf.ps1 -------------------------------------------------------------------------------- /configuration_templates/genconf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/configuration_templates/genconf.sh -------------------------------------------------------------------------------- /configuration_templates/microsoft_rds_load-balancing.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/configuration_templates/microsoft_rds_load-balancing.tpl -------------------------------------------------------------------------------- /configuration_templates/tomcat_jsessionid_persistence.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/configuration_templates/tomcat_jsessionid_persistence.tpl -------------------------------------------------------------------------------- /logs/logrotate.haproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/logs/logrotate.haproxy.conf -------------------------------------------------------------------------------- /logs/srv-4xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/logs/srv-4xx -------------------------------------------------------------------------------- /logs/srv-5xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/logs/srv-5xx -------------------------------------------------------------------------------- /logs/srv-requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/logs/srv-requests -------------------------------------------------------------------------------- /logs/srv-response-time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/logs/srv-response-time -------------------------------------------------------------------------------- /logs/syslog-ng_full_http_url.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/logs/syslog-ng_full_http_url.conf -------------------------------------------------------------------------------- /logs/url-404: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/logs/url-404 -------------------------------------------------------------------------------- /logs/url-errors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/logs/url-errors -------------------------------------------------------------------------------- /logs/url-requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/logs/url-requests -------------------------------------------------------------------------------- /logs/url-response-time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/logs/url-response-time -------------------------------------------------------------------------------- /monitoring/haproxy.monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/monitoring/haproxy.monit -------------------------------------------------------------------------------- /scripts/errorfile_content_length: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/scripts/errorfile_content_length -------------------------------------------------------------------------------- /scripts/halog_installation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/scripts/halog_installation -------------------------------------------------------------------------------- /scripts/haproxy.init.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/scripts/haproxy.init.debian -------------------------------------------------------------------------------- /scripts/haproxy.init.debian7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/scripts/haproxy.init.debian7 -------------------------------------------------------------------------------- /scripts/haproxy_update_from_git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy/HEAD/scripts/haproxy_update_from_git --------------------------------------------------------------------------------