Skip to content

troyready/haproxy

 
 

Repository files navigation

haproxy Cookbook

Build Status Cookbook Version

Installs and configures haproxy.

Requirements

  • Chef 12.5+

Platforms

  • Ubuntu 12.04+, Ubuntu 14.04+
  • RHEL 6+, CentOS6+, OracleLinux6+
  • RHEL 7+, CentOS7+, OracleLinux7+
  • Debian 8+

Resources

Install

haproxy_install 'package' do

end
haproxy_config_global '' do
  chroot '/var/lib/haproxy'
  daemon true
  maxconn 256
  log '/dev/log local0'
  log_tag 'WARDEN'
  pidfile '/var/run/haproxy.pid'
  stats socket: '/var/lib/haproxy/stats level admin'
  tuning 'bufsize' => '262144'
end
haproxy_config_defaults '' do
  mode 'http'
  timeout connect: '5000ms',
          client: '5000ms',
          server: '5000ms'
end
haproxy_frontend 'http-in' do
  bind '*:80'
  default_backend 'servers'
end
haproxy_backend 'servers' do
  server ['server1 127.0.0.1:8000 maxconn 32']
end

License & Authors

Copyright:: Heavy Water Operations, LLC.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Packages

No packages published

Languages

  • Ruby 64.1%
  • Shell 26.8%
  • HTML 9.1%