blob: 5529a3cbf0f73be544c3b98b24a28a1e8b94f569 [file] [log] [blame]
willy tarreau982249e2005-12-18 00:57:06 +01001Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
2Name: haproxy
Willy Tarreauc82a9e52009-10-12 06:40:53 +02003Version: 1.4-dev4
willy tarreau982249e2005-12-18 00:57:06 +01004Release: 1
5License: GPL
6Group: System Environment/Daemons
Willy Tarreau1e443e92007-04-01 11:37:02 +02007URL: http://haproxy.1wt.eu/
8Source0: http://haproxy.1wt.eu/download/1.3/src/%{name}-%{version}.tar.gz
willy tarreaue4c2e102006-03-15 20:47:25 +01009BuildRoot: %{_tmppath}/%{name}-%{version}-root
willy tarreau982249e2005-12-18 00:57:06 +010010BuildRequires: pcre-devel
willy tarreaub6da4792006-03-15 19:41:10 +010011Requires: /sbin/chkconfig, /sbin/service
willy tarreau982249e2005-12-18 00:57:06 +010012
13%description
14HA-Proxy is a TCP/HTTP reverse proxy which is particularly suited for high
15availability environments. Indeed, it can:
16- route HTTP requests depending on statically assigned cookies
17- spread the load among several servers while assuring server persistence
18 through the use of HTTP cookies
19- switch to backup servers in the event a main one fails
20- accept connections to special ports dedicated to service monitoring
21- stop accepting connections without breaking existing ones
22- add/modify/delete HTTP headers both ways
23- block requests matching a particular pattern
24
25It needs very little resource. Its event-driven architecture allows it to easily
26handle thousands of simultaneous connections on hundreds of instances without
27risking the system's stability.
28
29%prep
willy tarreaue4c2e102006-03-15 20:47:25 +010030%setup -q
willy tarreau982249e2005-12-18 00:57:06 +010031
Jan-Frode Myklebustfacafad2009-03-26 15:45:53 +010032# We don't want any perl dependecies in this RPM:
33%define __perl_requires /bin/true
34
willy tarreau982249e2005-12-18 00:57:06 +010035%build
Willy Tarreauef7341d2009-04-11 19:45:50 +020036%{__make} USE_PCRE=1 DEBUG="" ARCH=%{_target_cpu} TARGET=linux26
willy tarreau982249e2005-12-18 00:57:06 +010037
38%install
willy tarreaue4c2e102006-03-15 20:47:25 +010039[ "%{buildroot}" != "/" ] && %{__rm} -rf %{buildroot}
willy tarreau982249e2005-12-18 00:57:06 +010040
willy tarreaue4c2e102006-03-15 20:47:25 +010041%{__install} -d %{buildroot}%{_sbindir}
42%{__install} -d %{buildroot}%{_sysconfdir}/rc.d/init.d
43%{__install} -d %{buildroot}%{_sysconfdir}/%{name}
Sébastien Barrierf1a09bd2009-04-02 15:09:35 +020044%{__install} -d %{buildroot}%{_mandir}/man1/
willy tarreau982249e2005-12-18 00:57:06 +010045
willy tarreaue4c2e102006-03-15 20:47:25 +010046%{__install} -s %{name} %{buildroot}%{_sbindir}/
47%{__install} -c -m 644 examples/%{name}.cfg %{buildroot}%{_sysconfdir}/%{name}/
48%{__install} -c -m 755 examples/%{name}.init %{buildroot}%{_sysconfdir}/rc.d/init.d/%{name}
Sébastien Barrierf1a09bd2009-04-02 15:09:35 +020049%{__install} -c -m 755 doc/%{name}.1 %{buildroot}%{_mandir}/man1/
willy tarreau982249e2005-12-18 00:57:06 +010050
51%clean
willy tarreaue4c2e102006-03-15 20:47:25 +010052[ "%{buildroot}" != "/" ] && %{__rm} -rf %{buildroot}
willy tarreau982249e2005-12-18 00:57:06 +010053
54%post
willy tarreaue4c2e102006-03-15 20:47:25 +010055/sbin/chkconfig --add %{name}
willy tarreau982249e2005-12-18 00:57:06 +010056
57%preun
willy tarreaue4c2e102006-03-15 20:47:25 +010058if [ $1 = 0 ]; then
59 /sbin/service %{name} stop >/dev/null 2>&1 || :
60 /sbin/chkconfig --del %{name}
willy tarreau982249e2005-12-18 00:57:06 +010061fi
62
63%postun
willy tarreaue4c2e102006-03-15 20:47:25 +010064if [ "$1" -ge "1" ]; then
65 /sbin/service %{name} condrestart >/dev/null 2>&1 || :
willy tarreau982249e2005-12-18 00:57:06 +010066fi
67
68%files
willy tarreaue4c2e102006-03-15 20:47:25 +010069%defattr(-,root,root)
Sébastien Barrierf1a09bd2009-04-02 15:09:35 +020070%doc CHANGELOG TODO examples/*.cfg doc/haproxy-en.txt doc/haproxy-fr.txt doc/architecture.txt doc/configuration.txt
71%doc %{_mandir}/man1/%{name}.1*
72
willy tarreaue4c2e102006-03-15 20:47:25 +010073%attr(0755,root,root) %{_sbindir}/%{name}
74%dir %{_sysconfdir}/%{name}
75%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/%{name}/%{name}.cfg
76%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
willy tarreau982249e2005-12-18 00:57:06 +010077
78%changelog
Willy Tarreauc82a9e52009-10-12 06:40:53 +020079* Mon Oct 12 2009 Willy Tarreau <w@1wt.eu>
80- updated to 1.4-dev4
81
Willy Tarreau9f389e02009-09-24 00:12:50 +020082* Thu Sep 24 2009 Willy Tarreau <w@1wt.eu>
83- updated to 1.4-dev3
84
Willy Tarreau68dcd252009-08-09 22:57:09 +020085* Sun Aug 9 2009 Willy Tarreau <w@1wt.eu>
86- updated to 1.4-dev2
87
Willy Tarreaub03d2982009-07-29 22:38:32 +020088* Wed Jul 29 2009 Willy Tarreau <w@1wt.eu>
89- updated to 1.4-dev1
90
Willy Tarreau79158882009-06-09 11:59:08 +020091* Tue Jun 09 2009 Willy Tarreau <w@1wt.eu>
92- updated to 1.4-dev0
93
Willy Tarreaubeb05ae2009-05-10 20:27:47 +020094* Sun May 10 2009 Willy Tarreau <w@1wt.eu>
95- updated to 1.3.18
96
Willy Tarreauf459b422009-03-29 15:26:57 +020097* Sun Mar 29 2009 Willy Tarreau <w@1wt.eu>
98- updated to 1.3.17
99
Jan-Frode Myklebustfacafad2009-03-26 15:45:53 +0100100* Sun Mar 22 2009 Willy Tarreau <w@1wt.eu>
Willy Tarreau8019ffa2009-03-22 23:46:12 +0100101- updated to 1.3.16
102
Willy Tarreau7b4c5ae2008-04-19 21:06:14 +0200103* Sat Apr 19 2008 Willy Tarreau <w@1wt.eu>
104- updated to 1.3.15
105
Willy Tarreaue5b77e82007-12-06 01:25:44 +0100106* Wed Dec 5 2007 Willy Tarreau <w@1wt.eu>
107- updated to 1.3.14
108
Willy Tarreaue855f422007-10-18 22:38:22 +0200109* Thu Oct 18 2007 Willy Tarreau <w@1wt.eu>
110- updated to 1.3.13
111
Willy Tarreaub21152b2007-06-17 23:41:40 +0200112* Sun Jun 17 2007 Willy Tarreau <w@1wt.eu>
113- updated to 1.3.12
114
Willy Tarreaua3503e02007-06-03 17:27:07 +0200115* Sun Jun 3 2007 Willy Tarreau <w@1wt.eu>
116- updated to 1.3.11.4
117
Willy Tarreau544eb402007-05-14 02:42:33 +0200118* Mon May 14 2007 Willy Tarreau <w@1wt.eu>
Willy Tarreau3c6fc072007-05-14 14:40:25 +0200119- updated to 1.3.11.3
120
121* Mon May 14 2007 Willy Tarreau <w@1wt.eu>
Willy Tarreaufc273c22007-05-14 03:42:47 +0200122- updated to 1.3.11.2
123
124* Mon May 14 2007 Willy Tarreau <w@1wt.eu>
Willy Tarreau3c5340c2007-05-14 03:18:43 +0200125- updated to 1.3.11.1
126
127* Mon May 14 2007 Willy Tarreau <w@1wt.eu>
Willy Tarreau544eb402007-05-14 02:42:33 +0200128- updated to 1.3.11
129
Willy Tarreau9ca931f2007-05-10 07:51:17 +0200130* Thu May 10 2007 Willy Tarreau <w@1wt.eu>
131- updated to 1.3.10.2
132
Willy Tarreau13398d32007-05-09 22:58:28 +0200133* Tue May 09 2007 Willy Tarreau <w@1wt.eu>
134- updated to 1.3.10.1
135
Willy Tarreau61beedf2007-05-09 01:44:58 +0200136* Tue May 08 2007 Willy Tarreau <w@1wt.eu>
137- updated to 1.3.10
138
Willy Tarreau6e0433f2007-04-16 01:18:12 +0200139* Sun Apr 15 2007 Willy Tarreau <w@1wt.eu>
140- updated to 1.3.9
141
Willy Tarreau42c76592007-04-03 20:30:13 +0200142* Tue Apr 03 2007 Willy Tarreau <w@1wt.eu>
143- updated to 1.3.8.2
144
Willy Tarreauef6d7612007-04-01 11:06:22 +0200145* Sun Apr 01 2007 Willy Tarreau <w@1wt.eu>
146- updated to 1.3.8.1
147
Willy Tarreaud661cc02007-03-26 00:24:56 +0200148* Sun Mar 25 2007 Willy Tarreau <w@1wt.eu>
149- updated to 1.3.8
150
Willy Tarreau9cabf702007-01-26 23:49:01 +0100151* Wed Jan 26 2007 Willy Tarreau <w@1wt.eu>
152- updated to 1.3.7
153
Willy Tarreau49e1ee82007-01-22 00:56:46 +0100154* Wed Jan 22 2007 Willy Tarreau <w@1wt.eu>
155- updated to 1.3.6
156
Willy Tarreau5871f8e2007-01-07 02:47:01 +0100157* Wed Jan 07 2007 Willy Tarreau <w@1wt.eu>
158- updated to 1.3.5
159
Willy Tarreau85270da2007-01-02 00:59:39 +0100160* Wed Jan 02 2007 Willy Tarreau <w@1wt.eu>
161- updated to 1.3.4
162
Willy Tarreau9c9fea42006-10-16 00:03:35 +0200163* Wed Oct 15 2006 Willy Tarreau <w@1wt.eu>
164- updated to 1.3.3
165
Willy Tarreau690f9aa2006-09-03 11:23:06 +0200166* Wed Sep 03 2006 Willy Tarreau <w@1wt.eu>
167- updated to 1.3.2
168
Willy Tarreau8f2b8552006-07-09 17:11:39 +0200169* Wed Jul 09 2006 Willy Tarreau <w@1wt.eu>
170- updated to 1.3.1
171
willy tarreau7e6328d2006-05-21 23:26:20 +0200172* Wed May 21 2006 Willy Tarreau <willy@w.ods.org>
173- updated to 1.2.14
174
willy tarreauc3a2e072006-05-13 18:51:38 +0200175* Wed May 01 2006 Willy Tarreau <willy@w.ods.org>
176- updated to 1.2.13
177
willy tarreauc0d4bbd2006-04-15 21:47:50 +0200178* Wed Apr 15 2006 Willy Tarreau <willy@w.ods.org>
179- updated to 1.2.12
180
willy tarreaua60214e2006-03-30 18:03:39 +0200181* Wed Mar 30 2006 Willy Tarreau <willy@w.ods.org>
182- updated to 1.2.11.1
183
willy tarreaud8b1fa52006-03-19 21:01:07 +0100184* Wed Mar 19 2006 Willy Tarreau <willy@w.ods.org>
185- updated to 1.2.10
186
willy tarreaue4c2e102006-03-15 20:47:25 +0100187* Wed Mar 15 2006 Willy Tarreau <willy@w.ods.org>
188- updated to 1.2.9
189
190* Sat Jan 22 2005 Willy Tarreau <willy@w.ods.org>
191- updated to 1.2.3 (1.1.30)
192
193* Sun Nov 14 2004 Willy Tarreau <w@w.ods.org>
194- updated to 1.1.29
195- fixed path to config and init files
196- statically linked PCRE to increase portability to non-pcre systems
197
198* Sun Jun 6 2004 Willy Tarreau <willy@w.ods.org>
199- updated to 1.1.28
200- added config check support to the init script
201
202* Tue Oct 28 2003 Simon Matter <simon.matter@invoca.ch>
203- updated to 1.1.27
204- added pid support to the init script
205
206* Wed Oct 22 2003 Simon Matter <simon.matter@invoca.ch>
207- updated to 1.1.26
willy tarreau982249e2005-12-18 00:57:06 +0100208
willy tarreaue4c2e102006-03-15 20:47:25 +0100209* Thu Oct 16 2003 Simon Matter <simon.matter@invoca.ch>
210- initial build