2005-12-17 23:57:06 +00:00
|
|
|
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
|
|
|
|
Name: haproxy
|
2009-05-10 18:27:47 +00:00
|
|
|
Version: 1.3.18
|
2005-12-17 23:57:06 +00:00
|
|
|
Release: 1
|
|
|
|
License: GPL
|
|
|
|
Group: System Environment/Daemons
|
2007-04-01 09:37:02 +00:00
|
|
|
URL: http://haproxy.1wt.eu/
|
|
|
|
Source0: http://haproxy.1wt.eu/download/1.3/src/%{name}-%{version}.tar.gz
|
2006-03-15 19:47:25 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
2005-12-17 23:57:06 +00:00
|
|
|
BuildRequires: pcre-devel
|
2006-03-15 18:41:10 +00:00
|
|
|
Requires: /sbin/chkconfig, /sbin/service
|
2005-12-17 23:57:06 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
HA-Proxy is a TCP/HTTP reverse proxy which is particularly suited for high
|
|
|
|
availability environments. Indeed, it can:
|
|
|
|
- route HTTP requests depending on statically assigned cookies
|
|
|
|
- spread the load among several servers while assuring server persistence
|
|
|
|
through the use of HTTP cookies
|
|
|
|
- switch to backup servers in the event a main one fails
|
|
|
|
- accept connections to special ports dedicated to service monitoring
|
|
|
|
- stop accepting connections without breaking existing ones
|
|
|
|
- add/modify/delete HTTP headers both ways
|
|
|
|
- block requests matching a particular pattern
|
|
|
|
|
|
|
|
It needs very little resource. Its event-driven architecture allows it to easily
|
|
|
|
handle thousands of simultaneous connections on hundreds of instances without
|
|
|
|
risking the system's stability.
|
|
|
|
|
|
|
|
%prep
|
2006-03-15 19:47:25 +00:00
|
|
|
%setup -q
|
2005-12-17 23:57:06 +00:00
|
|
|
|
2009-03-26 14:45:53 +00:00
|
|
|
# We don't want any perl dependecies in this RPM:
|
|
|
|
%define __perl_requires /bin/true
|
|
|
|
|
2005-12-17 23:57:06 +00:00
|
|
|
%build
|
2009-04-11 17:45:50 +00:00
|
|
|
%{__make} USE_PCRE=1 DEBUG="" ARCH=%{_target_cpu} TARGET=linux26
|
2005-12-17 23:57:06 +00:00
|
|
|
|
|
|
|
%install
|
2006-03-15 19:47:25 +00:00
|
|
|
[ "%{buildroot}" != "/" ] && %{__rm} -rf %{buildroot}
|
2005-12-17 23:57:06 +00:00
|
|
|
|
2006-03-15 19:47:25 +00:00
|
|
|
%{__install} -d %{buildroot}%{_sbindir}
|
|
|
|
%{__install} -d %{buildroot}%{_sysconfdir}/rc.d/init.d
|
|
|
|
%{__install} -d %{buildroot}%{_sysconfdir}/%{name}
|
2009-04-02 13:09:35 +00:00
|
|
|
%{__install} -d %{buildroot}%{_mandir}/man1/
|
2005-12-17 23:57:06 +00:00
|
|
|
|
2006-03-15 19:47:25 +00:00
|
|
|
%{__install} -s %{name} %{buildroot}%{_sbindir}/
|
|
|
|
%{__install} -c -m 644 examples/%{name}.cfg %{buildroot}%{_sysconfdir}/%{name}/
|
|
|
|
%{__install} -c -m 755 examples/%{name}.init %{buildroot}%{_sysconfdir}/rc.d/init.d/%{name}
|
2009-04-02 13:09:35 +00:00
|
|
|
%{__install} -c -m 755 doc/%{name}.1 %{buildroot}%{_mandir}/man1/
|
2005-12-17 23:57:06 +00:00
|
|
|
|
|
|
|
%clean
|
2006-03-15 19:47:25 +00:00
|
|
|
[ "%{buildroot}" != "/" ] && %{__rm} -rf %{buildroot}
|
2005-12-17 23:57:06 +00:00
|
|
|
|
|
|
|
%post
|
2006-03-15 19:47:25 +00:00
|
|
|
/sbin/chkconfig --add %{name}
|
2005-12-17 23:57:06 +00:00
|
|
|
|
|
|
|
%preun
|
2006-03-15 19:47:25 +00:00
|
|
|
if [ $1 = 0 ]; then
|
|
|
|
/sbin/service %{name} stop >/dev/null 2>&1 || :
|
|
|
|
/sbin/chkconfig --del %{name}
|
2005-12-17 23:57:06 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
%postun
|
2006-03-15 19:47:25 +00:00
|
|
|
if [ "$1" -ge "1" ]; then
|
|
|
|
/sbin/service %{name} condrestart >/dev/null 2>&1 || :
|
2005-12-17 23:57:06 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
%files
|
2006-03-15 19:47:25 +00:00
|
|
|
%defattr(-,root,root)
|
2009-04-02 13:09:35 +00:00
|
|
|
%doc CHANGELOG TODO examples/*.cfg doc/haproxy-en.txt doc/haproxy-fr.txt doc/architecture.txt doc/configuration.txt
|
|
|
|
%doc %{_mandir}/man1/%{name}.1*
|
|
|
|
|
2006-03-15 19:47:25 +00:00
|
|
|
%attr(0755,root,root) %{_sbindir}/%{name}
|
|
|
|
%dir %{_sysconfdir}/%{name}
|
|
|
|
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/%{name}/%{name}.cfg
|
|
|
|
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
|
2005-12-17 23:57:06 +00:00
|
|
|
|
|
|
|
%changelog
|
2009-05-10 18:27:47 +00:00
|
|
|
* Sun May 10 2009 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.18
|
|
|
|
|
2009-03-29 13:26:57 +00:00
|
|
|
* Sun Mar 29 2009 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.17
|
|
|
|
|
2009-03-26 14:45:53 +00:00
|
|
|
* Sun Mar 22 2009 Willy Tarreau <w@1wt.eu>
|
2009-03-22 22:46:12 +00:00
|
|
|
- updated to 1.3.16
|
|
|
|
|
2008-04-19 19:06:14 +00:00
|
|
|
* Sat Apr 19 2008 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.15
|
|
|
|
|
2007-12-06 00:25:44 +00:00
|
|
|
* Wed Dec 5 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.14
|
|
|
|
|
2007-10-18 20:38:22 +00:00
|
|
|
* Thu Oct 18 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.13
|
|
|
|
|
2007-06-17 21:41:40 +00:00
|
|
|
* Sun Jun 17 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.12
|
|
|
|
|
2007-06-03 15:27:07 +00:00
|
|
|
* Sun Jun 3 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.11.4
|
|
|
|
|
2007-05-14 12:40:25 +00:00
|
|
|
* Mon May 14 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.11.3
|
|
|
|
|
2007-05-14 01:18:43 +00:00
|
|
|
* Mon May 14 2007 Willy Tarreau <w@1wt.eu>
|
2007-05-14 01:42:47 +00:00
|
|
|
- updated to 1.3.11.2
|
|
|
|
|
|
|
|
* Mon May 14 2007 Willy Tarreau <w@1wt.eu>
|
2007-05-14 01:18:43 +00:00
|
|
|
- updated to 1.3.11.1
|
|
|
|
|
2007-05-14 00:42:33 +00:00
|
|
|
* Mon May 14 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.11
|
|
|
|
|
2007-05-10 05:51:17 +00:00
|
|
|
* Thu May 10 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.10.2
|
|
|
|
|
2007-05-09 20:58:28 +00:00
|
|
|
* Tue May 09 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.10.1
|
|
|
|
|
2007-05-08 23:44:58 +00:00
|
|
|
* Tue May 08 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.10
|
|
|
|
|
2007-04-15 23:18:12 +00:00
|
|
|
* Sun Apr 15 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.9
|
|
|
|
|
2007-04-03 18:30:13 +00:00
|
|
|
* Tue Apr 03 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.8.2
|
|
|
|
|
2007-04-01 09:06:22 +00:00
|
|
|
* Sun Apr 01 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.8.1
|
|
|
|
|
2007-03-25 22:24:56 +00:00
|
|
|
* Sun Mar 25 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.8
|
|
|
|
|
2007-01-26 22:49:01 +00:00
|
|
|
* Wed Jan 26 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.7
|
|
|
|
|
2007-01-21 23:56:46 +00:00
|
|
|
* Wed Jan 22 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.6
|
|
|
|
|
2007-01-07 01:47:01 +00:00
|
|
|
* Wed Jan 07 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.5
|
|
|
|
|
2007-01-01 23:59:39 +00:00
|
|
|
* Wed Jan 02 2007 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.4
|
|
|
|
|
2006-10-15 22:03:35 +00:00
|
|
|
* Wed Oct 15 2006 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.3
|
|
|
|
|
2006-09-03 09:23:06 +00:00
|
|
|
* Wed Sep 03 2006 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.2
|
|
|
|
|
2006-07-09 15:11:39 +00:00
|
|
|
* Wed Jul 09 2006 Willy Tarreau <w@1wt.eu>
|
|
|
|
- updated to 1.3.1
|
|
|
|
|
2006-05-21 21:26:20 +00:00
|
|
|
* Wed May 21 2006 Willy Tarreau <willy@w.ods.org>
|
|
|
|
- updated to 1.2.14
|
|
|
|
|
2006-05-13 16:51:38 +00:00
|
|
|
* Wed May 01 2006 Willy Tarreau <willy@w.ods.org>
|
|
|
|
- updated to 1.2.13
|
|
|
|
|
2006-04-15 19:47:50 +00:00
|
|
|
* Wed Apr 15 2006 Willy Tarreau <willy@w.ods.org>
|
|
|
|
- updated to 1.2.12
|
|
|
|
|
2006-03-30 16:03:39 +00:00
|
|
|
* Wed Mar 30 2006 Willy Tarreau <willy@w.ods.org>
|
|
|
|
- updated to 1.2.11.1
|
|
|
|
|
2006-03-19 20:01:07 +00:00
|
|
|
* Wed Mar 19 2006 Willy Tarreau <willy@w.ods.org>
|
|
|
|
- updated to 1.2.10
|
|
|
|
|
2006-03-15 19:47:25 +00:00
|
|
|
* Wed Mar 15 2006 Willy Tarreau <willy@w.ods.org>
|
|
|
|
- updated to 1.2.9
|
|
|
|
|
|
|
|
* Sat Jan 22 2005 Willy Tarreau <willy@w.ods.org>
|
|
|
|
- updated to 1.2.3 (1.1.30)
|
|
|
|
|
|
|
|
* Sun Nov 14 2004 Willy Tarreau <w@w.ods.org>
|
|
|
|
- updated to 1.1.29
|
|
|
|
- fixed path to config and init files
|
|
|
|
- statically linked PCRE to increase portability to non-pcre systems
|
|
|
|
|
|
|
|
* Sun Jun 6 2004 Willy Tarreau <willy@w.ods.org>
|
|
|
|
- updated to 1.1.28
|
|
|
|
- added config check support to the init script
|
|
|
|
|
|
|
|
* Tue Oct 28 2003 Simon Matter <simon.matter@invoca.ch>
|
|
|
|
- updated to 1.1.27
|
|
|
|
- added pid support to the init script
|
|
|
|
|
|
|
|
* Wed Oct 22 2003 Simon Matter <simon.matter@invoca.ch>
|
|
|
|
- updated to 1.1.26
|
2005-12-17 23:57:06 +00:00
|
|
|
|
2006-03-15 19:47:25 +00:00
|
|
|
* Thu Oct 16 2003 Simon Matter <simon.matter@invoca.ch>
|
|
|
|
- initial build
|