Edit

IABSD.fr/ports/net/haproxy/files

Branch :

  • Show log

    Commit

  • Author : jca
    Date : 2015-11-10 11:56:54
    Hash : 66720648
    Message : Maintainer update to haproxy-1.6.2 Upstream removed the example config file, this update adds a new, simpler one. Also fix a time_t printing warning while here.

  • haproxy.cfg
  • global
    	log 127.0.0.1	local0 debug
    	maxconn 1024
    	chroot /var/haproxy
    	uid 604
    	gid 604
    	daemon
    	pidfile	/var/run/haproxy.pid
    
    defaults
    	log	global
    	mode	http
    	option	httplog
    	option	dontlognull
    	option	redispatch
    	retries	3
    	maxconn	2000
    
    frontend haproxy
    	bind *:80
    	default_backend httpd
    
    backend httpd
    	option forwardfor
    	server www 127.0.0.1:8080 check