/[smeserver]/rpms/e-smith-apache/sme10/e-smith-apache.spec
ViewVC logotype

Annotation of /rpms/e-smith-apache/sme10/e-smith-apache.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.22 - (hide annotations) (download)
Sat Apr 16 06:08:10 2022 UTC (2 years, 2 months ago) by jpp
Branch: MAIN
CVS Tags: e-smith-apache-2_6_0-19_el7_sme
Changes since 1.21: +8 -2 lines
* Sat Apr 16 2022 Jean-Philippe Pialasse <tests@pialasse.com> 2.6.0-19.sme
- convert httpd 2.2 allow,deny to Require for 2.4 [SME: 9375]
- use maxsize, not size [SME: 11867]

1 jpp 1.22 # $Id: e-smith-apache.spec,v 1.21 2022/02/19 04:46:05 jpp Exp $
2 vip-ire 1.1
3     Summary: e-smith server and gateway - apache module
4     %define name e-smith-apache
5     Name: %{name}
6 vip-ire 1.4 %define version 2.6.0
7 jpp 1.22 %define release 19
8 vip-ire 1.1 Version: %{version}
9     Release: %{release}%{?dist}
10     License: GPL
11     Group: Networking/Daemons
12     Source: %{name}-%{version}.tar.xz
13 unnilennium 1.5 Patch0: e-smith-apache-2.6.0-httpd24.patch
14 jpp 1.6 Patch1: e-smith-apache-2.6.0-bz9591-iconspath.patch
15 jpp 1.7 Patch2: e-smith-apache-2.6.0-bz10916-SSLHonorCipherOrder.patch
16 jpp 1.8 Patch3: e-smith-apache-2.6.0-bz10459-Ciphers-and-TLS.patch
17 jpp 1.11 Patch4: e-smith-apache-2.6.0-bz10867-remove-php3-refs.patch
18 jpp 1.12 Patch5: e-smith-apache-2.6.0-bz10966-remove-hardcoded-ports.patch
19 jpp 1.13 Patch6: e-smith-apache-2.6.0-bz8693-SNI.patch
20 jpp 1.15 Patch7: e-smith-apache-2.6.0-bz11123-bz11111-systemd-update.patch
21 jpp 1.16 Patch8: e-smith-apache-2.6.0-bz10826-defaultSSLCert-if-file-does-not-exist.patch
22 jpp 1.17 Patch9: e-smith-apache-2.6.0-bz11551-httpsForceLocalOnly.patch
23 jpp 1.19 Patch10: e-smith-apache-2.6.0-bz11760-moremodules.patch
24 jpp 1.20 Patch11: e-smith-apache-2.6.0-bz11867.patch
25 jpp 1.22 Patch12: e-smith-apache-2.6.0-bz9375-Require.patch
26 jpp 1.6
27 vip-ire 1.1 BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
28     BuildArchitectures: noarch
29     Requires: e-smith-base >= 4.15.1
30     Requires: e-smith-lib >= 1.15.1-19
31     Requires: e-smith-daemontools >= 1.7.1-01
32     Requires: mod_ssl
33     Requires: mod_authnz_external
34     Obsoletes: distcache <= 1.4.5
35     Obsoletes: mod_auth_external
36     Obsoletes: e-smith-proxypass
37     Obsoletes: e-smith-apache-proxy
38     Conflicts: e-smith-ibays < 1.0.2
39     AutoReqProv: no
40     BuildRequires: e-smith-devtools >= 1.11.0-12
41    
42     %description
43     e-smith server and gateway software - apache module.
44    
45 unnilennium 1.5 %prep
46     %setup
47     %patch0 -p1
48 jpp 1.6 %patch1 -p1
49 jpp 1.7 %patch2 -p1
50 jpp 1.8 %patch3 -p1
51 jpp 1.11 %patch4 -p1
52 jpp 1.12 %patch5 -p1
53 jpp 1.13 %patch6 -p1
54 jpp 1.15 %patch7 -p1
55     rm -rf root/var/service/ root/service/ root/etc/rc.d/init.d/httpd-e-smith
56 jpp 1.16 %patch8 -p1
57 jpp 1.17 %patch9 -p1
58 jpp 1.19 %patch10 -p1
59 jpp 1.20 %patch11 -p1
60 jpp 1.22 %patch12 -p1
61 unnilennium 1.5
62     %build
63     perl createlinks
64    
65     %install
66     rm -rf $RPM_BUILD_ROOT
67     (cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)
68    
69     /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \
70 jpp 1.15 --file /sbin/e-smith/systemd/httpd-e-smith-prepare 'attr(0554,root,root)' \
71 unnilennium 1.5 --dir /var/service/httpd-e-smith 'attr(01755,root,root)' \
72     --file /var/service/httpd-e-smith/down 'attr(0644,root,root)' \
73     --file /var/service/httpd-e-smith/run 'attr(0755,root,root)' \
74     > e-smith-%{version}-filelist
75    
76     echo "%doc COPYING" >> e-smith-%{version}-filelist
77    
78     %clean
79     rm -rf $RPM_BUILD_ROOT
80    
81     %files -f e-smith-%{version}-filelist
82     %defattr(-,root,root)
83    
84 jpp 1.15 %pre
85     # ease the transition between runit and systemd
86     if [ $1 -gt 1 ] ; then
87     if [ -e /var/service/httpd-e-smith/run ] ; then
88     /usr/bin/sv d httpd-e-smith
89     fi
90     fi
91 unnilennium 1.5
92 vip-ire 1.1 %changelog
93 jpp 1.22 * Sat Apr 16 2022 Jean-Philippe Pialasse <tests@pialasse.com> 2.6.0-19.sme
94     - convert httpd 2.2 allow,deny to Require for 2.4 [SME: 9375]
95     - use maxsize, not size [SME: 11867]
96    
97 jpp 1.21 * Fri Feb 18 2022 Jean-Philippe Pialasse <tests@pialasse.com> 2.6.0-18.sme
98 jpp 1.20 - use logrotate.d instead of event action [SME: 11867]
99 jpp 1.21 use size to force log rotate before normal delay
100 jpp 1.20
101 jpp 1.19 * Mon Nov 15 2021 Jean-Philippe Pialasse <tests@pialasse.com> 2.6.0-16.sme
102     - add modules ldap authnz_ldap and proxy_wstunnel [SME: 11760]
103     previously provided by webapps-common
104    
105 jpp 1.18 * Thu Sep 16 2021 Jean-Philippe Pialasse <tests@pialasse.com> 2.6.0-15.sme
106     - fix httpd-e-smith failing to start on reboot in private server-gateway mode [SME: 11596]
107    
108 jpp 1.17 * Tue Mar 30 2021 Jean-Philippe Pialasse <tests@pialasse.com> 2.6.0-14.sme
109     - add possibility to force https on LAN only [SME: 11511]
110     usefull for VPN over port 443
111    
112 jpp 1.16 * Thu Dec 10 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-13.sme
113     - prevent httpd to fail if modSSL defined certs does not exist [SME: 10826]
114     default on self generated cert
115    
116 jpp 1.15 * Wed Dec 09 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-12.sme
117     - create-update event [SME: 11123]
118     - move httpd-e-smith to systemd [SME: 11111]
119     changed sigusr1 used in events to reload as defined in the unit file
120     - give a logger to httpd-e-smith : journald [SME: 1416]
121    
122 jpp 1.14 * Sat Jun 27 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-11.sme
123     - set default SSLStrictSNIVHostCheck to off [SME: 8693]
124    
125 jpp 1.13 * Sat Jun 27 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-10.sme
126     - add SNI support for individual certificates per VirtualHosts [SME: 8693]
127    
128 jpp 1.12 * Sat Jun 27 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-9.sme
129     - port 80 and 443 should not be hardcoded [SME: 9192]
130     - e-smith-apache removing hardcoded ports [SME: 10966]
131    
132 jpp 1.11 * Tue Jun 23 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-8.sme
133     - remove php3 and php4 refs [SME: 10867]
134    
135 jpp 1.10 * Fri May 01 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-7.sme
136 jpp 1.8 - disable TLSv1 TLSv1.1 by default [SME: 10459]
137 jpp 1.9 * put strong ciphers first in default string
138 jpp 1.10 * cipher order and properties with periods
139 jpp 1.8
140 jpp 1.7 * Fri May 01 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-4.sme
141     - add SSLHonorCipherOrder Directive [SME: 10916]
142    
143 jpp 1.6 * Tue Dec 10 2019 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-3.sme
144     - update apache icon path [SME: 9591]
145    
146 unnilennium 1.5 * Wed Mar 23 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-2.sme
147     - fix syntax preventing httpd to launch [SME: 9364]
148     - moved changelog at end of file
149    
150 vip-ire 1.1 * Thu Feb 4 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-1.sme
151     - Roll new stream for sme10
152    
153     * Sun Jan 17 2016 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-15.sme
154     - Hook into the new ssl-update event [SME: 9152]
155    
156     * Thu Jan 7 2016 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-14.sme
157     - Set TLSv1 back to enabled (but keep a prop to disable it if needed) [SME: 9154]
158    
159     * Wed Jan 6 2016 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-13.sme
160     - Disable TLSv1 [SME: 9154]
161    
162     * Tue Dec 9 2014 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-12.sme
163     - Disable SSLv3 [SME: 8722]
164    
165     * Fri Oct 31 2014 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-11.sme
166     - Revert CRIME mitigation patch, as it's not needed [SME: 8613]
167    
168     * Fri Oct 24 2014 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-10.sme
169     - Mitigate CVE-2012-4929 [SME: 8613]
170    
171     * Tue Jul 29 2014 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-9.sme
172     - Turn SSLEngine on in the SSL vhost (ProxyPassVirtualHosts) [SME: 8501]
173    
174     * Tue Jan 28 2014 Ian Wells <esmith@wellsi.com> 2.4.0-8.sme
175     - Remove insecure ciphers [SME: 8138]
176    
177     * Mon Oct 07 2013 John H. Bennett III <bennettj@johnbennettservices.com> 2.4.0-7.sme
178     - Re-do patch to add missing default httpd.conf modules [SME: 7874]
179     - Add authz_groupfile as a loadable Module [SME: 7875]
180    
181     * Fri Oct 04 2013 John H. Bennett III <bennettj@johnbennettservices.com> 2.4.0-6.sme
182     - Patch to add missing default httpd.conf modules [SME: 7874]
183    
184     * Mon Sep 30 2013 John H. Bennett III <bennettj@johnbennettservices.com> 2.4.0-5.sme
185     - Patch to correct issue with not being able to access a password protected ibay [SME: 7794]
186    
187     * Mon Mar 11 2013 Shad L. Lords <slords@mail.com> 2.4.0-4.sme
188     - Obsolete el5 version of distcache [SME: 7273]
189    
190     * Wed Mar 6 2013 Shad L. Lords <slords@mail.com> 2.4.0-3.sme
191     - Obsolete mod_auth_external and require mod_authnz_external [SME: 7319]
192     - Change the way module is loaded and initialized
193    
194     * Mon Feb 18 2013 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-2.sme
195     - Add missing dependency on mod_ssl [SME: 7234]
196    
197     * Wed Feb 13 2013 Shad L. Lords <slords@mail.com> 2.4.0-1.sme
198     - Roll new stream for sme9
199    
200     * Fri Jun 29 2012 Ian Wells <esmith@wellsi.com> 2.2.0-9.sme
201     - Disable index listing of Apache icons folder [SME: 7015]
202    
203     * Fri Dec 23 2011 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-8.sme
204     - Fix server-resources redirect w/o trailing slash [SME: 6758]
205    
206     * Sat Mar 12 2011 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-7.sme
207     - Disable SSLv2 by default [SME: 6482]
208    
209     * Sun Apr 26 2009 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-6.sme
210     - Add option to disable SSLv2 [SME: 5034]
211    
212     * Sat Mar 28 2009 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-5.sme
213     - Add OpenOffice2 MIME Types [SME: 5112]
214    
215     * Sat Mar 7 2009 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-4.sme
216     - Add OpenOffice MIME Types [SME: 4848]
217     - Add XML MIME Type [SME: 5035]
218    
219     * Thu Dec 11 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-3.sme
220     - Fix issues in patch that adds Microsoft Office 2007 MIME types [SME: 4548]
221    
222     * Tue Dec 2 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-2.sme
223     - Add Microsoft Office 2007 MIME types [SME: 4548]
224    
225     * Tue Oct 7 2008 Shad L. Lords <slords@mail.com> 2.2.0-1.sme
226     - Roll new stream to separate sme7/sme8 trees [SME: 4633]
227    
228     * Tue Oct 23 2007 Filippo Carletti <filippo.carletti@gmail.com> 1.2.0-16
229     - Add SSL support to ProxyPass. [SME: 3481]
230    
231     * Tue Sep 11 2007 Gavin Weight <gweight@gmail.com> 1.2.0-15
232     - Create/Move httpd logrotate.d directory. [SME: 3380]
233    
234     * Tue Sep 11 2007 Gavin Weight <gweight@gmail.com> 1.2.0-14
235     - Rename apache to httpd in templates2expand. [SME: 3380]
236    
237     * Wed Jun 6 2007 Shad L. Lords <slords@mail.com> 1.2.0-13
238     - Fix patch to exclude hosts if domains exist [SME: 2307]
239    
240     * Fri May 18 2007 Shad L. Lords <slords@mail.com> 1.2.0-12
241     - Use correct lib for modules
242    
243     * Sun Apr 29 2007 Shad L. Lords <slords@mail.com>
244     - Clean up spec so package can be built by koji/plague
245    
246     * Fri Feb 23 2007 Shad L. Lords <slords@mail.com> 1.2.0-11
247     - Fix patch so template expands [SME: 2307]
248    
249     * Fri Feb 23 2007 Shad L. Lords <slords@mail.com> 1.2.0-10
250     - Don't include host if domain exists [SME: 2307]
251    
252     * Tue Feb 13 2007 Charlie Brady <charlie_brady@mitel.com> 1.2.0-9
253     - Gracefully handle differences in module names between apache
254     versions. [SME: 2471]
255     - Add logrotate changes which should have been in 1.2.0-7 (patch
256     was provided but not applied).
257    
258     * Sat Jan 27 2007 Shad L. Lords <slords@mail.com> 1.2.0-8
259     - Remove proxypass fragment (now in e-smith-manager)
260    
261     * Sat Jan 27 2007 Shad L. Lords <slords@mail.com> 1.2.0-8
262     - Remove proxypass fragment (now in e-smith-manager)
263    
264     * Fri Jan 19 2007 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-7
265     - Move logrotate fragments from e-smith-base.
266    
267     * Thu Dec 21 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-6
268     - Add support for optional modSSL{CertificateChainFile} [SME: 1779]
269    
270     * Thu Dec 07 2006 Shad L. Lords <slords@mail.com>
271     - Update to new release naming. No functional changes.
272     - Make Packager generic
273    
274     * Wed Nov 29 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-04
275     - Revert last change [SME: 2109]
276     - TODO: Split dev stream for that change
277     - Add Conflicts for latest e-smith-manager dev stream
278    
279     * Wed Nov 08 2006 Charlie Brady <charlie_brady@mitel.com> 1.2.0-03
280     - Remove manager proxy pass fragment - moved to e-smith-manager.
281    
282     * Sat Jul 15 2006 Charlie Brady <charlie_brady@mitel.com> 1.2.0-02
283     - Add ProxyPassReverse directives to allow redirects to work for proxy-
284     passed virtual domains. Also proxy pass https to https. [SME: 1735]
285    
286     * Tue Mar 14 2006 Charlie Brady <charlie_brady@mitel.com> 1.2.0-01
287     - Roll stable stream version. [SME: 1016]
288    
289     * Mon Mar 13 2006 Charlie Brady <charlie_brady@mitel.com> 1.1.2-37
290     - Fix lookup of 'httpd' props in a few templates. Service name is
291     httpd-e-smith. [SME: 1029]
292    
293     * Fri Feb 10 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-36
294     - Deny access to files starting with .ht typically
295     .htaccess and .htpasswd [SME: 716]
296    
297     * Tue Jan 31 2006 Gavin Weight <gweight@gmail.com> 1.1.2-35
298     - Change modPerl from enabled to disabled [SME: 575]
299    
300     * Fri Jan 6 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-34
301     - Add SVG filetype [SME: 374]
302    
303     * Thu Dec 15 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-33
304     - And relocate the modSSL{CipherSuite} default to e-smith-base with
305     the other modSSL defaults [SME: 194]
306    
307     * Thu Dec 15 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-32
308     - Change default CipherSuite [SME: 194]
309     Was: ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:-LOW:+SSLv2:-EXP
310     Is: ALL:!aNULL:!ADH:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
311    
312     * Thu Dec 15 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-31
313     - Moved SSL CipherSuite into db default - modSSL{CipherSuite} [SME: 194]
314    
315     * Thu Dec 15 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-30
316     - Remove inode from FileETag response [SME: 198]
317    
318     * Wed Dec 14 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-29
319     - Use literal HERE document to ensure braces in TRACE/TRACK rewrite [SME: 196]
320    
321     * Wed Dec 14 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-28
322     - Add type for XSL stylesheet (.xsl) files [SME: 76]
323    
324     * Wed Nov 30 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-27
325     - Bump release number only
326    
327     * Wed Aug 17 2005 Charlie Brady <charlieb@e-smith.com>
328     - [1.1.2-26]
329     - Add content from e-smith-apache-proxy, to enable apache to
330     also operate as a non-caching proxy server. Add Obsoletes:
331     header to ensure e-smith-apache-proxy RPM is removed on
332     upgrade.
333    
334     * Tue Aug 9 2005 Shad Lords <slords@mail.com>
335     - [1.1.2-25]
336     - Add directive for icons directory
337     - Fix newlines left on end of icons template
338     - Update server aliases to reference all local hosts [SF: 1246172]
339    
340     * Wed Aug 3 2005 Shad Lords <slords@mail.com>
341     - [1.1.2-24]
342     - Fix Rewrite rule to include trailing stuff
343    
344     * Wed Aug 3 2005 Shad Lords <slords@mail.com>
345     - [1.1.2-23]
346     - Update ProxyPass to use httpd-admin{TCPPort} [SF: 1246986]
347    
348     * Wed Jul 27 2005 Charlie Brady <charlieb@e-smith.com>
349     - [1.1.2-22]
350     - Disable HTTP TRACK and TRACE in each VirtualDomain (patch by Gordon
351     Rowell, with some further work by Shad Lords). [SF: 1240658]
352    
353     * Wed Jul 27 2005 Gordon Rowell <gordonr@gormand.com.au>
354     - [1.1.2-21]
355     - Disable all low grade ciphers for SSL. [SF: 1240654]
356    
357     * Tue Jul 19 2005 Charlie Brady <charlieb@e-smith.com>
358     - [1.1.2-20]
359     - Don't load userdir module by default. It's not used, and causes
360     Nessus to complain. [SF: 1240657]
361    
362     * Mon Jul 18 2005 Charlie Brady <charlieb@e-smith.com>
363     - [1.1.2-19]
364     - Patch from Shad: update rewrite and ProxyPass stuff for manager URLs.
365     [SF: 1172203]
366    
367     * Mon Jul 18 2005 Charlie Brady <charlieb@e-smith.com>
368     - [1.1.2-18]
369     - Add GPL COPYING file.
370    
371     * Mon Jul 18 2005 Charlie Brady <charlieb@e-smith.com>
372     - [1.1.2-17]
373     - Clean up apache templates to use current DB interfaces.
374     - Make sure the single host ValidFrom specs for proxypass doesn't
375     upset apache.
376    
377     * Tue Jun 21 2005 Charlie Brady <charlieb@e-smith.com>
378     - [1.1.2-16]
379     - Make sure that DocumentRoot directory exists - latest apache2
380     will not start up if not.
381    
382     * Fri Jun 17 2005 Charlie Brady <charlieb@e-smith.com>
383     - [1.1.2-15]
384     - Do graceful restart of apache in domain-*, in case domain->ibay
385     assignments have changed. [SF: 1222433]
386    
387     * Wed Jun 8 2005 Charlie Brady <charlieb@e-smith.com>
388     - [1.1.2-14]
389     - Add rewrite fragment for httpd.conf to disable TRACE and TRACK
390     requests.
391    
392     * Fri May 27 2005 Charlie Brady <charlieb@e-smith.com>
393     - [1.1.2-13]
394     - Add support for TemplatePath => ProxyPassVirtualHost entries
395     in domains db.
396    
397     * Fri May 27 2005 Charlie Brady <charlieb@e-smith.com>
398     - [1.1.2-12]
399     - Bring ProxyPass fragment up to latest e-smith-lib APIs.
400    
401     * Fri May 27 2005 Charlie Brady <charlieb@e-smith.com>
402     - [1.1.2-11]
403     - Remove ProxyPass support for various deprecated URIs. [SF: 1172203]
404     - Add content of e-smith-proxypass RPM. Add Obsoletes: header.
405    
406     * Wed Mar 30 2005 Charlie Brady <charlieb@e-smith.com>
407     - [1.1.2-10]
408     - Add default TCPPort property to httpd-e-smith, so that correct
409     hole is punched in firewall.
410    
411     * Mon Mar 21 2005 Charlie Brady <charlieb@e-smith.com>
412     - [1.1.2-09]
413     - Remove mangling of syslog and apache log filenames - just
414     retargeting the symlinks has the same effect. [MN00064132]
415    
416     * Sun Mar 20 2005 Charlie Brady <charlieb@e-smith.com>
417     - [1.1.2-08]
418     - Remove logrotate-httpd which is obsoleted by generic_template_expand.
419    
420     * Wed Mar 16 2005 Charlie Brady <charlieb@e-smith.com>
421     - [1.1.2-07]
422     - Fix dangling symlink in ibay-create. [MN00065576]
423    
424     * Mon Mar 14 2005 Charlie Brady <charlieb@e-smith.com>
425     - [1.1.2-06]
426     - Use generic_template_expand action where possible, in place
427     of specific actions. Update e-smith-lib dependency. [MN00064130]
428     - Replace all restart-* and most reload-* actions with calls to 'adjust-services'.
429     Update e-smith-lib version dependency. [MN00065576]
430    
431     * Tue Feb 22 2005 Charlie Brady <charlieb@e-smith.com>
432     - [1.1.2-05]
433     - Don't attempt to configure httpd.conf in post-install and post-upgrade.
434     [MN00065717]
435    
436     * Tue Jan 25 2005 Charlie Brady <charlieb@e-smith.com>
437     - [1.1.2-04]
438     - Remove stray ServiceLink sylinks. [MN00064757]
439    
440     * Tue Dec 28 2004 Charlie Brady <charlieb@e-smith.com>
441     - [1.1.2-03]
442     - Add "chpst -P" to httpd-e-smith run script, to protect runsv/supervise
443     from term signals (wrongly) relayed by apache. [charlieb MN00051144]
444    
445     * Fri Dec 24 2004 Charlie Brady <charlieb@e-smith.com>
446     - [1.1.2-02]
447     - Remove ValidFrom defaults fragment for httpd-admin - as it duplicates
448     one in e-smith-base. [MN00062533]
449    
450     * Wed Nov 17 2004 Mark Knox <markk@e-smith.com>
451     - [1.1.2-01]
452     - Picking up new directory. MN00056429.
453    
454     * Wed Nov 17 2004 Mark Knox <markk@e-smith.com>
455     - [1.1.1-03]
456     - Added empty ValidFrom defaults fragment [markk MN00056429]
457    
458     * Tue Nov 9 2004 Charlie Brady <charlieb@e-smith.com>
459     - [1.1.1-02]
460     - Modify config and run script for compatibility with apache 2. Most of these
461     changes were contributed by Shad Lords. [charlieb MN00051144]
462    
463     * Mon Oct 4 2004 Charlie Brady <charlieb@e-smith.com>
464     - [1.1.1-01]
465     - New development stream for apache 2 - 1.1.1
466    
467     * Fri Sep 3 2004 Charlie Brady <charlieb@e-smith.com>
468     - [1.1.0-23]
469     - Clean BuildRequires. [charlieb MN00043055]
470    
471     * Tue Jul 13 2004 Michael Soulier <msoulier@e-smith.com>
472     - [1.1.0-22]
473     - Updated modPerl templates to remove use of esmith::config.
474     [msoulier MN00039579]
475    
476     * Tue Jun 22 2004 Michael Soulier <msoulier@e-smith.com>
477     - [1.1.0-21]
478     - Added RewriteCond statements to previous RewriteRules to exclude localhost,
479     so ssh port-forwarding is not broken. [msoulier MN00020885]
480    
481     * Fri Jun 18 2004 Tony Clayton <apc@e-smith.com>
482     - [1.1.0-20]
483     - Fix LoadModule fragment from last patch [tonyc 11348]
484    
485     * Mon Jun 14 2004 Tony Clayton <apc@e-smith.com>
486     - [1.1.0-19]
487     - Add modPerl service and httpd.conf templates [tonyc 11348]
488    
489     * Mon May 10 2004 Michael Soulier <msoulier@e-smith.com>
490     - [1.1.0-18]
491     - Adding rewrite rules to prevent plaintext access to the server manager.
492     [msoulier MN00020885]
493    
494     * Thu May 6 2004 Michael Soulier <msoulier@e-smith.com>
495     - [1.1.0-17]
496     - Added httpd-admin's remoteaccess list to permissible networks for
497     server-resources. [msoulier MN00024949]
498    
499     * Mon Feb 23 2004 Michael Soulier <msoulier@e-smith.com>
500     - [1.1.0-16]
501     - Backing-out last change. [msoulier dpar-21489]
502    
503     * Mon Feb 23 2004 Michael Soulier <msoulier@e-smith.com>
504     - [1.1.0-15]
505     - Added restart-httpd-graceful to domain-* events. [msoulier dpar-21489]
506    
507     * Wed Feb 18 2004 Michael Soulier <msoulier@e-smith.com>
508     - [1.1.0-14]
509     - Updating requires to e-smith-daemontools. [msoulier 7629]
510    
511     * Wed Feb 18 2004 Michael Soulier <msoulier@e-smith.com>
512     - [1.1.0-13]
513     - Updating restart-httpd-graceful to use new daemontools sigusr1 option.
514     [msoulier 7629]
515    
516     * Wed Jan 21 2004 Michael Soulier <msoulier@e-smith.com>
517     - [1.1.0-12]
518     - Staggering the symlinks a little farther. [msoulier 9955]
519    
520     * Wed Jan 21 2004 Michael Soulier <msoulier@e-smith.com>
521     - [1.1.0-11]
522     - Adding symlinks to the service-domain-create event for httpd restart.
523     [msoulier 9955]
524    
525     * Tue Dec 9 2003 Michael Soulier <msoulier@e-smith.com>
526     - [1.1.0-10]
527     - Fixed another error in the specfile, resulting in incorrect file
528     permissions. [msoulier 7629]
529     - Updated action scripts for supervise. [msoulier 7629]
530    
531     * Tue Dec 9 2003 Michael Soulier <msoulier@e-smith.com>
532     - [1.1.0-09]
533     - Fixed an error in the specfile. [msoulier 7629]
534    
535     * Tue Dec 9 2003 Michael Soulier <msoulier@e-smith.com>
536     - [1.1.0-08]
537     - Updated createlinks for daemontools. [msoulier 7629]
538    
539     * Tue Dec 9 2003 Michael Soulier <msoulier@e-smith.com>
540     - [1.1.0-07]
541     - Putting httpd-e-smith under supervision. [msoulier 7629]
542    
543     * Thu Sep 18 2003 Michael Soulier <msoulier@e-smith.com>
544     - [1.1.0-06]
545     - Added a null-string return value to the end of 00Setup, ensure no output
546     from that fragment. [msoulier 9803]
547    
548     * Wed Sep 3 2003 Charlie Brady <charlieb@e-smith.com>
549     - [1.1.0-05]
550     - Use implementation class, not virtual class in VirtualHosts/00Setup fragment.
551     [charlieb 9803]
552    
553     * Wed Sep 3 2003 Michael Soulier <msoulier@e-smith.com>
554     - [1.1.0-04]
555     - Added a 75AddType05.exe fragment to specify a proper mime-type for .exe
556     files. [msoulier 9866]
557    
558     * Fri Aug 29 2003 Charlie Brady <charlieb@e-smith.com>
559     - [1.1.0-03]
560     - Allow TemplatePath property in domain record to specify an alternate template
561     subdir for virtual host content specification (e.g. to proxypass a domain).
562     [charlieb 8409]
563    
564     * Fri Aug 29 2003 Charlie Brady <charlieb@e-smith.com>
565     - [1.1.0-02]
566     - Changed the VirtualHosts subtemplate to pass the domain object instead of db handle,
567     and modified VirtualHosts/00Setup fragment to convert it to the right class.
568     Fix scoping problem with the blessed object. [charlieb 9803]
569    
570     * Fri Aug 29 2003 Michael Soulier <msoulier@e-smith.com>
571     - [1.1.0-01]
572     - rolling to dev stream - 1.1.0
573    
574     * Fri Aug 29 2003 Michael Soulier <msoulier@e-smith.com>
575     - [1.0.0-04]
576     - Added a 00Setup fragment to VirtualHosts to process the %domainsdb hash back
577     into an esmith::DomainsDB object. [msoulier 9803]
578    
579     * Mon Aug 25 2003 Michael Soulier <msoulier@e-smith.com>
580     - [1.0.0-03]
581     - Added a reference to the domains db in the extra data for processing the
582     VirtualHosts fragments. [msoulier 9803]
583    
584     * Fri Aug 1 2003 Michael Soulier <msoulier@e-smith.com>
585     - [1.0.0-02]
586     - Fixed a precedence error that broke virtual hosts in apache.
587     [msoulier 9640]
588    
589     * Wed Jul 9 2003 Charlie Brady <charlieb@e-smith.com>
590     - [1.0.0-01]
591     - Setting to release version number - 1.0.0
592    
593     * Wed Jul 9 2003 Michael Soulier <msoulier@e-smith.com>
594     - [0.2.0-04]
595     - Fixed breakage in admin web server when a local network with a 32-bit subnet
596     mask is used. [msoulier 9259]
597    
598     * Thu Jul 3 2003 Charlie Brady <charlieb@e-smith.com>
599     - [0.2.0-03]
600     - Fix log noise problem in expansion of httpd.conf template. [charlieb 9269]
601    
602     * Wed Jul 2 2003 Charlie Brady <charlieb@e-smith.com>
603     - [0.2.0-02]
604     - List primary domain as first (default) virtual domain in apache config.
605     Include $SystemName.domain.name in ServerAlias directive. [charlieb 9241]
606    
607     * Thu Jun 26 2003 Charlie Brady <charlieb@e-smith.com>
608     - [0.2.0-01]
609     - Changing version to stable stream number - 0.2.0
610    
611     * Thu Jun 12 2003 Gordon Rowell <gordonr@e-smith.com>
612     - [0.1.2-01]
613     - Add order to migrate fragments [gordonr 9015]
614    
615     * Wed Jun 11 2003 Gordon Rowell <gordonr@e-smith.com>
616     - [0.1.1-02]
617     - Fixed Conflicts header - should be <, not <= [gordonr 8903]
618    
619     * Fri Jun 6 2003 Gordon Rowell <gordonr@e-smith.com>
620     - [0.1.1-01]
621     - Shuffled some httpd.conf fragments to e-smith-ibays [gordonr 8903]
622    
623     * Wed May 28 2003 Michael Soulier <msoulier@e-smith.com>
624     - [0.1.0-19]
625     - Moving httpd-e-smith init script to e-smith-apache. [msoulier 8852]
626    
627     * Tue Apr 29 2003 Gordon Rowell <gordonr@e-smith.com>
628     - [0.1.0-18]
629     - Do an explicit die if the httpd-e-smith record is missing from the
630     config db, rather than an implicit die due to an invalid object
631     reference [gordonr 8609]
632    
633     * Wed Apr 9 2003 Gordon Rowell <gordonr@e-smith.com>
634     - [0.1.0-17]
635     - Relocated conf-httpd from e-smith-base [gordonr 8150]
636    
637     * Fri Apr 4 2003 Mark Knox <markk@e-smith.com>
638     - [0.1.0-16]
639     - Moved restart-httpd-* actions from base [markk 5509]
640    
641     * Fri Apr 4 2003 Mark Knox <markk@e-smith.com>
642     - [0.1.0-15]
643     - Moved db config fragments here from e-smith-base [markk 5509]
644    
645     * Tue Apr 1 2003 Gordon Rowell <gordonr@e-smith.com>
646     - [0.1.0-14]
647     - Make /server-resources/ browsable from LAN [gordonr 6620]
648    
649     * Tue Apr 1 2003 Gordon Rowell <gordonr@e-smith.com>
650     - [0.1.0-13]
651     - Delete Apache ReadmeName directive [gordonr 6313]
652    
653     * Tue Apr 1 2003 Gordon Rowell <gordonr@e-smith.com>
654     - [0.1.0-12]
655     - Fixed broken conf-httpd-e-smith links in post-{install,upgrade} [gordonr 7960]
656    
657     * Tue Mar 18 2003 Lijie Deng <lijied@e-smith.com>
658     - [0.1.0-11]
659     - Deleted ./etc/httpd/conf/httpd.conf/template-begin
660     deleted ./etc/httpd/conf/srm.conf/template-begin
661     deleted ./etc/httpd/conf/access.conf/template-begin [lijied 3295]
662    
663     * Mon Mar 17 2003 Lijie Deng <lijied@e-smith.com>
664     - [0.1.0-10]
665     - Delete empty template-end file [lijied 3295]
666    
667     * Wed Mar 12 2003 Charlie Brady <charlieb@e-smith.com>
668     - [0.1.0-09]
669     - Remove more references to primary and wwwpublic in favour
670     of the "Primary" i-bay. There is still some special case code,
671     which might go later if it turns out not to be needed.
672     [charlieb 5652]
673    
674     * Tue Mar 11 2003 Mark Knox <markk@e-smith.com>
675     - [0.1.0-08]
676     - Fixed a missing quote in 27ManagerProxyPass [markk 7635]
677    
678     * Tue Mar 11 2003 Gordon Rowell <gordonr@e-smith.com>
679     - [0.1.0-07]
680     - Pass externalSSLAccess and localAccess to VirtualDomains fragments so they don't
681     need to recalculate these values [gordonr 7635]
682     - Use early return from 27ManagerProxyPass and new DB interface [gordonr 7635]
683    
684     * Mon Mar 10 2003 Charlie Brady <charlieb@e-smith.com>
685     - [0.1.0-06]
686     - Remove special case handling for /home/e-smith/files/primary in Apache
687     configuration. Migrate code and db entries for wwwpublic to Public.
688     [charlieb 5652]
689    
690     * Fri Mar 7 2003 Charlie Brady <charlieb@e-smith.com>
691     - [0.1.0-05]
692     - Replace deprecated CONFREF with MORE_DATA in processTemplate call in
693     VirtualHosts fragment of httpd.conf templates. Fixes template
694     expansion breakage (I'm not sure what broke it, but this fixes it.)
695     [charlieb]
696     - Add default config db fragments to set type and status. Remove redundant
697     conf-httpd-e-smith script. [charlieb 1507]
698    
699     * Fri Jan 24 2003 Gordon Rowell <gordonr@e-smith.com>
700     - [0.1.0-04]
701     - Move SSL initialisation to global context [gordonr 1432]
702    
703     * Fri Jan 24 2003 Gordon Rowell <gordonr@e-smith.com>
704     - [0.1.0-03]
705     - Use default SSL certificate of $SystemName.$DomainName [gordonr 4874]
706    
707     * Wed Jan 8 2003 Mark Knox <markk@e-smith.com>
708     - [0.1.0-02]
709     - Added conf-httpd-e-smith action linked to the same events as conf-startup
710     in e-smith-base [markk 6428]
711    
712     * Mon Jan 06 2003 Mark Knox <m_knox@mitel.com>
713     - [0.1.0-01]
714     - Initial release, split out from e-smith-base [markk 6428]
715    

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed