-
Notifications
You must be signed in to change notification settings - Fork 18
/
haproxy.spec
312 lines (223 loc) · 8.01 KB
/
haproxy.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
# To Build:
#
# sudo yum -y install rpmdevtools && rpmdev-setuptree
# sudo yum -y install pcre-devel gcc make
# wget https://raw.github.com/nmilford/rpm-haproxy/master/haproxy.spec -O ~/rpmbuild/SPECS/haproxy.spec
# wget http://www.haproxy.org/download/1.6/src/haproxy-1.6.9.tar.gz -O ~/rpmbuild/SOURCES/haproxy-1.6.9.tar.gz
# rpmbuild -bb ~/rpmbuild/SPECS/haproxy.spec
%define version 1.6.9
%{!?release: %{!?release: %define release 1}}
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
Name: haproxy
Version: %{version}
Release: %{release}%{?dist}
License: GPL
Group: System Environment/Daemons
URL: http://haproxy.1wt.eu/
Source0: http://www.haproxy.org/download/1.5/src/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-root
BuildRequires: pcre-devel make gcc openssl-devel
Requires: /sbin/chkconfig, /sbin/service
%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
%setup -n %{name}-%{version}
# We don't want any perl dependecies in this RPM:
%define __perl_requires /bin/true
%build
%{__make} USE_PCRE=1 DEBUG="" ARCH=%{_target_cpu} TARGET=linux26 USE_OPENSSL=1
%install
[ "%{buildroot}" != "/" ] && %{__rm} -rf %{buildroot}
%{__install} -d %{buildroot}%{_sbindir}
%{__install} -d %{buildroot}%{_sysconfdir}/rc.d/init.d
%{__install} -d %{buildroot}%{_sysconfdir}/%{name}
%{__install} -d %{buildroot}%{_mandir}/man1/
%{__install} -d %{buildroot}%{_sharedstatedir}/haproxy
mkdir -p %{buildroot}/etc/haproxy/errors
mkdir -p %{buildroot}/usr/share/haproxy
cp examples/errorfiles/503.http %{buildroot}/etc/haproxy/errors/503.http
%{__install} -s %{name} %{buildroot}%{_sbindir}/
%{__install} -c -m 755 examples/%{name}.init %{buildroot}%{_sysconfdir}/rc.d/init.d/%{name}
%{__install} -c -m 755 doc/%{name}.1 %{buildroot}%{_mandir}/man1/
%clean
[ "%{buildroot}" != "/" ] && %{__rm} -rf %{buildroot}
%pre
/usr/sbin/groupadd -g 188 -r haproxy 2>/dev/null || :
/usr/sbin/useradd -u 188 -g haproxy -d /var/lib/haproxy -s /sbin/nologin -r haproxy 2>/dev/null || :
%post
/sbin/chkconfig --add %{name}
%preun
if [ $1 = 0 ]; then
/sbin/service %{name} stop >/dev/null 2>&1 || :
/sbin/chkconfig --del %{name}
fi
%postun
if [ "$1" -ge "1" ]; then
/sbin/service %{name} condrestart >/dev/null 2>&1 || :
fi
%files
/usr/share/haproxy
/etc/haproxy/errors/503.http
%defattr(-,root,root)
%doc CHANGELOG examples/*.cfg doc/*.txt
%doc %{_mandir}/man1/%{name}.1*
%attr(0755,root,root) %{_sbindir}/%{name}
%dir %{_sysconfdir}/%{name}
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
%attr(0755,haproxy,haproxy) %{_sharedstatedir}/haproxy
%changelog
* Wed Nov 16 2016 Hugh Mooney <[email protected]>
- Updated to 1.6.9
* Fri Jul 31 2015 Brian Hourigan <[email protected]>
- updated to 1.5.14
* Wed Apr 08 2015 David Wooldridge <[email protected]>
- updated to 1.5.11
* Sat Jan 03 2015 Jonathan Mainguy <[email protected]>
- updated to 1.5.10
* Thu Aug 21 2014 Don Ky <[email protected]>
- updated to 1.5.0-dev26
* Mon May 19 2014 Tim Shelton <[email protected]>
- updated to 1.5.0-dev25
* Fri Mar 05 2014 Ilya Sukhanov <[email protected]>
- updated to 1.5.0-dev22
* Fri Feb 21 2014 Chao Lin <[email protected]>
- Build with ssl support
* Mon Oct 15 2013 Ilya Sukhanov <[email protected]>
- add user creation
- set up chroot dir
* Mon Jul 01 2013 Nathan Milford <[email protected]>
- updated to 1.5.0-dev19
* Mon Nov 29 2010 Willy Tarreau <[email protected]>
- updated to 1.4.10
* Fri Oct 29 2010 Willy Tarreau <[email protected]>
- updated to 1.4.9
* Wed Jun 16 2010 Willy Tarreau <[email protected]>
- updated to 1.4.8
* Mon Jun 7 2010 Willy Tarreau <[email protected]>
- updated to 1.4.7
* Sun May 16 2010 Willy Tarreau <[email protected]>
- updated to 1.4.6
* Thu May 13 2010 Willy Tarreau <[email protected]>
- updated to 1.4.5
* Wed Apr 7 2010 Willy Tarreau <[email protected]>
- updated to 1.4.4
* Tue Mar 30 2010 Willy Tarreau <[email protected]>
- updated to 1.4.3
* Wed Mar 17 2010 Willy Tarreau <[email protected]>
- updated to 1.4.2
* Thu Mar 4 2010 Willy Tarreau <[email protected]>
- updated to 1.4.1
* Fri Feb 26 2010 Willy Tarreau <[email protected]>
- updated to 1.4.0
* Tue Feb 2 2010 Willy Tarreau <[email protected]>
- updated to 1.4-rc1
* Mon Jan 25 2010 Willy Tarreau <[email protected]>
- updated to 1.4-dev8
* Mon Jan 25 2010 Willy Tarreau <[email protected]>
- updated to 1.4-dev7
* Fri Jan 8 2010 Willy Tarreau <[email protected]>
- updated to 1.4-dev6
* Sun Jan 3 2010 Willy Tarreau <[email protected]>
- updated to 1.4-dev5
* Mon Oct 12 2009 Willy Tarreau <[email protected]>
- updated to 1.4-dev4
* Thu Sep 24 2009 Willy Tarreau <[email protected]>
- updated to 1.4-dev3
* Sun Aug 9 2009 Willy Tarreau <[email protected]>
- updated to 1.4-dev2
* Wed Jul 29 2009 Willy Tarreau <[email protected]>
- updated to 1.4-dev1
* Tue Jun 09 2009 Willy Tarreau <[email protected]>
- updated to 1.4-dev0
* Sun May 10 2009 Willy Tarreau <[email protected]>
- updated to 1.3.18
* Sun Mar 29 2009 Willy Tarreau <[email protected]>
- updated to 1.3.17
* Sun Mar 22 2009 Willy Tarreau <[email protected]>
- updated to 1.3.16
* Sat Apr 19 2008 Willy Tarreau <[email protected]>
- updated to 1.3.15
* Wed Dec 5 2007 Willy Tarreau <[email protected]>
- updated to 1.3.14
* Thu Oct 18 2007 Willy Tarreau <[email protected]>
- updated to 1.3.13
* Sun Jun 17 2007 Willy Tarreau <[email protected]>
- updated to 1.3.12
* Sun Jun 3 2007 Willy Tarreau <[email protected]>
- updated to 1.3.11.4
* Mon May 14 2007 Willy Tarreau <[email protected]>
- updated to 1.3.11.3
* Mon May 14 2007 Willy Tarreau <[email protected]>
- updated to 1.3.11.2
* Mon May 14 2007 Willy Tarreau <[email protected]>
- updated to 1.3.11.1
* Mon May 14 2007 Willy Tarreau <[email protected]>
- updated to 1.3.11
* Thu May 10 2007 Willy Tarreau <[email protected]>
- updated to 1.3.10.2
* Tue May 09 2007 Willy Tarreau <[email protected]>
- updated to 1.3.10.1
* Tue May 08 2007 Willy Tarreau <[email protected]>
- updated to 1.3.10
* Sun Apr 15 2007 Willy Tarreau <[email protected]>
- updated to 1.3.9
* Tue Apr 03 2007 Willy Tarreau <[email protected]>
- updated to 1.3.8.2
* Sun Apr 01 2007 Willy Tarreau <[email protected]>
- updated to 1.3.8.1
* Sun Mar 25 2007 Willy Tarreau <[email protected]>
- updated to 1.3.8
* Wed Jan 26 2007 Willy Tarreau <[email protected]>
- updated to 1.3.7
* Wed Jan 22 2007 Willy Tarreau <[email protected]>
- updated to 1.3.6
* Wed Jan 07 2007 Willy Tarreau <[email protected]>
- updated to 1.3.5
* Wed Jan 02 2007 Willy Tarreau <[email protected]>
- updated to 1.3.4
* Wed Oct 15 2006 Willy Tarreau <[email protected]>
- updated to 1.3.3
* Wed Sep 03 2006 Willy Tarreau <[email protected]>
- updated to 1.3.2
* Wed Jul 09 2006 Willy Tarreau <[email protected]>
- updated to 1.3.1
* Wed May 21 2006 Willy Tarreau <[email protected]>
- updated to 1.2.14
* Wed May 01 2006 Willy Tarreau <[email protected]>
- updated to 1.2.13
* Wed Apr 15 2006 Willy Tarreau <[email protected]>
- updated to 1.2.12
* Wed Mar 30 2006 Willy Tarreau <[email protected]>
- updated to 1.2.11.1
* Wed Mar 19 2006 Willy Tarreau <[email protected]>
- updated to 1.2.10
* Wed Mar 15 2006 Willy Tarreau <[email protected]>
- updated to 1.2.9
* Sat Jan 22 2005 Willy Tarreau <[email protected]>
- updated to 1.2.3 (1.1.30)
* Sun Nov 14 2004 Willy Tarreau <[email protected]>
- 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 <[email protected]>
- updated to 1.1.28
- added config check support to the init script
* Tue Oct 28 2003 Simon Matter <[email protected]>
- updated to 1.1.27
- added pid support to the init script
* Wed Oct 22 2003 Simon Matter <[email protected]>
- updated to 1.1.26
* Thu Oct 16 2003 Simon Matter <[email protected]>
- initial build