]> git.pld-linux.org Git - packages/lighttpd.git/blob - lighttpd.spec
- add placeholder for errordocs
[packages/lighttpd.git] / lighttpd.spec
1 # TODO:
2 # - test ldap and mysql (failed at this time)
3 # - mysql issue: http://www.freebsd.org/cgi/query-pr.cgi?pr=76866
4 # - fam over gamin is possible, just configure doesn't check other than gamin
5 # - feature stat-cache-fam (doesn't work)
6 # - lighttpd writes early startup messages to stderr, and if started from
7 #   rc-scripts the stderr is closed which causes lighttpd to abort():
8 #   2006-07-20 21:05:52: (server.c.1233) WARNING: unknown config-key: url.rewrite-final (ignored)
9 #
10 # NOTES:
11 # - fcgi-devel is only used for the test-scripts
12 # - disable largefile, if you have 2.4 kernel to get sendfile() support, and don't need > 2GB file requests,
13 #   see http://article.gmane.org/gmane.comp.web.lighttpd:722
14 #
15 # Conditional build for lighttpd:
16 %bcond_without  xattr           # support of extended attributes
17 %bcond_without  ipv6            # IPv4-only version (doesn't require IPv6 in kernel)
18 %bcond_without  largefile       # largefile support (see notes above)
19 %bcond_without  ssl             # ssl support
20 %bcond_without  mysql           # mysql support in mod_mysql_vhost
21 %bcond_with     ldap            # ldap support in mod_auth
22 %bcond_without  lua             # LUA support in mod_cml (needs LUA >= 5.1)
23 %bcond_with     memcache        # memcached support in mod_cml / mod_trigger_b4_dl
24 %bcond_with     gamin           # gamin for reducing number of stat() calls.
25                                 # NOTE: must be enabled in config: server.stat-cache-engine = "fam"
26 %bcond_with     gdbm            # gdbm in mod_trigger_b4_dl
27 %bcond_with     webdav_props    # properties in mod_webdav (includes extra sqlite3/libxml deps)
28 %bcond_with     webdav_locks    # webdav locks with extra efsprogs deps
29 %bcond_with     valgrind        # compile code with valgrind support.
30 %bcond_with     deflate         # build deflate module (needs patch update with current svn)
31
32 # SVN snapshot
33 #define         _svn    1277
34 # Prerelease
35 #define _snap r1332
36
37 %if %{with webdav_locks}
38 %define         webdav_progs    1
39 %endif
40
41 %define         _rel 4
42 Summary:        Fast and light HTTP server
43 Summary(pl):    Szybki i lekki serwer HTTP
44 Name:           lighttpd
45 Version:        1.4.13
46 Release:        %{_rel}%{?_snap:.%(echo %{_snap}|tr - _)}%{?_svn:.%{_svn}}
47 License:        BSD
48 Group:          Networking/Daemons
49 Source0:        http://www.lighttpd.net/download/%{name}-%{version}.tar.gz
50 # Source0-md5:  d775d6478391b95d841a1018c8db0b95
51 Source1:        %{name}.init
52 Source2:        %{name}.conf
53 Source3:        %{name}.user
54 Source4:        %{name}.logrotate
55 Source5:        %{name}.sysconfig
56 Source6:        %{name}-mime.types.sh
57 Source7:        http://www.lighttpd.net/favicon.ico
58 # Source7-md5:  a358994becabd4060393a5454bde505d
59 Source8:        http://www.lighttpd.net/light_button.png
60 # Source8-md5:  02330e2313fadc29144edfd6000879f8
61 Source9:        http://www.lighttpd.net/light_logo.png
62 # Source9-md5:  ac20784510e420d5cbe5fc1cdb53d7a7
63 Source10:       http://gdl.hopto.org/~spider/pldstats/gfx/pld1.png
64 # Source10-md5: 486ecec3f6f4fe7f9bf7cee757b864f4
65 Source11:       %{name}-pld.html
66 Source12:       %{name}.monitrc
67 Source100:      %{name}-mod_access.conf
68 Source101:      %{name}-mod_accesslog.conf
69 Source102:      %{name}-mod_alias.conf
70 Source103:      %{name}-mod_auth.conf
71 Source104:      %{name}-mod_cgi.conf
72 Source105:      %{name}-mod_cml.conf
73 Source106:      %{name}-mod_compress.conf
74 Source107:      %{name}-mod_deflate.conf
75 Source108:      %{name}-mod_dirlisting.conf
76 Source109:      %{name}-mod_evasive.conf
77 Source110:      %{name}-mod_evhost.conf
78 Source111:      %{name}-mod_expire.conf
79 Source112:      %{name}-mod_fastcgi.conf
80 Source113:      %{name}-mod_flv_streaming.conf
81 Source114:      %{name}-mod_indexfile.conf
82 Source115:      %{name}-mod_proxy.conf
83 Source116:      %{name}-mod_redirect.conf
84 Source117:      %{name}-mod_rewrite.conf
85 Source118:      %{name}-mod_rrdtool.conf
86 Source119:      %{name}-mod_scgi.conf
87 Source120:      %{name}-mod_secdownload.conf
88 Source121:      %{name}-mod_setenv.conf
89 Source122:      %{name}-mod_simple_vhost.conf
90 Source123:      %{name}-mod_ssi.conf
91 Source124:      %{name}-mod_staticfile.conf
92 Source125:      %{name}-mod_status.conf
93 Source126:      %{name}-mod_trigger_b4_dl.conf
94 Source127:      %{name}-mod_userdir.conf
95 Source128:      %{name}-mod_usertrack.conf
96 Source129:      %{name}-mod_webdav.conf
97 Source130:      %{name}-php-spawned.conf
98 Source131:      %{name}-php-external.conf
99 Source132:      %{name}-ssl.conf
100 Source133:      %{name}-mod_mysql_vhost.conf
101 Source134:      %{name}-mod_magnet.conf
102 Source135:      %{name}-mod_extforward.conf
103 #Patch100: %{name}-branch.diff
104 Patch0:         %{name}-use_bin_sh.patch
105 Patch1:         %{name}-mod_evasive-status_code.patch
106 Patch2:         %{name}-mod_deflate.patch
107 Patch3:         %{name}-mod_extforward-v2.patch
108 URL:            http://www.lighttpd.net/
109 %{?with_xattr:BuildRequires:    attr-devel}
110 BuildRequires:  autoconf
111 BuildRequires:  automake
112 BuildRequires:  bzip2-devel
113 %{?with_gamin:BuildRequires:    gamin-devel}
114 %{?with_gdbm:BuildRequires:     gdbm-devel}
115 %{?with_memcache:BuildRequires: libmemcache-devel}
116 BuildRequires:  libtool
117 BuildRequires:  libuuid-devel
118 %{?with_webdav_props:BuildRequires:     libxml2-devel}
119 %{?with_lua:BuildRequires:      lua51-devel}
120 BuildRequires:  mailcap >= 2.1.14-4.4
121 %{?with_mysql:BuildRequires:    mysql-devel}
122 %{?with_ldap:BuildRequires:     openldap-devel}
123 %{?with_ssl:BuildRequires:      openssl-devel}
124 BuildRequires:  pcre-devel
125 BuildRequires:  pkgconfig
126 BuildRequires:  rpmbuild(macros) >= 1.268
127 %{?with_webdav_props:BuildRequires:     sqlite3-devel}
128 %{?with_valgrind:BuildRequires: valgrind}
129 BuildRequires:  zlib-devel
130 Requires(post,preun):   /sbin/chkconfig
131 Requires(postun):       /usr/sbin/groupdel
132 Requires(postun):       /usr/sbin/userdel
133 Requires(pre):  /bin/id
134 Requires(pre):  /usr/bin/getgid
135 Requires(pre):  /usr/lib/rpm/user_group.sh
136 Requires(pre):  /usr/sbin/groupadd
137 Requires(pre):  /usr/sbin/useradd
138 Requires(pre):  /usr/sbin/usermod
139 Requires:       %{name}-mod_dirlisting
140 Requires:       %{name}-mod_indexfile
141 Requires:       %{name}-mod_staticfile
142 Requires:       rc-scripts
143 Provides:       group(http)
144 Provides:       group(lighttpd)
145 Provides:       user(lighttpd)
146 Provides:       webserver
147 # for the posttrans scriptlet, conflicts because in vserver environment rpm package is not installed.
148 Conflicts:      rpm < 4.4.2-0.2
149 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
150
151 %define         _libdir         %{_prefix}/%{_lib}/%{name}
152 %define         _lighttpddir    /home/services/%{name}
153 %define         _sysconfdir     /etc/%{name}
154
155 %description
156 lighttpd is a secure, fast, compliant and very flexible web-server
157 which has been optimized for high-performance environments. It has a
158 very low memory footprint compared to other webservers and takes care
159 of cpu-load. Its advanced feature-set (FastCGI, CGI, Auth,
160 Output-Compression, URL-Rewriting and many more) make lighttpd the
161 perfect webserver-software for every server that is suffering load
162 problems.
163
164 %description -l pl
165 lighttpd jest bezpiecznym, szybkim, przyjaznym i bardzo elastycznym
166 serwerem WWW, który zosta³ zoptymalizowany pod k±tem
167 wysokowydajno¶ciowych ¶rodowisk. Zajmuje bardzo ma³± ilo¶æ pamiêci w
168 porównaniu do innych serwerów WWW oraz dba o zajêto¶æ procesora.
169 Szeroki zestaw opcji (FastCGI, CGI, uwierzytelnianie, kompresja
170 wyj¶cia, przepisywanie URL-i i wiele innych) czyni± z lighttpd
171 doskona³e oprogramowanie web-serwerowe na ka¿dy serwer cierpi±cy z
172 powodu problemów z obci±¿eniem.
173
174 %package mod_access
175 Summary:        lighttpd module for making access restrictions
176 Summary(pl):    Modu³ lighttpd ograniczaj±cy dostêp
177 Group:          Networking/Daemons
178 Requires:       %{name} = %{version}-%{release}
179 Provides:       webserver(access)
180
181 %description mod_access
182 The access module is used to deny access to files with given trailing
183 path names.
184
185 %description mod_access -l pl
186 Modu³ access s³u¿y do ograniczania dostêpu do plików o podanych
187 ¶cie¿kach.
188
189 %package mod_accesslog
190 Summary:        lighttpd module to record access logs
191 Summary(pl):    Modu³ lighttpd do zapisu logów dostêpu
192 Group:          Networking/Daemons
193 Requires:       %{name} = %{version}-%{release}
194
195 %description mod_accesslog
196 CLF like by default, flexible like Apache.
197
198 %description mod_accesslog -l pl
199 Domy¶lnie podobny do CLF, elastyczny jak Apache.
200
201 %package mod_alias
202 Summary:        lighttpd module for making URL aliasing
203 Summary(pl):    Modu³ lighttpd odpowiadaj±cy za aliasy URL-i
204 Group:          Networking/Daemons
205 Requires:       %{name} = %{version}-%{release}
206 Provides:       webserver(alias)
207
208 %description mod_alias
209 The alias module is used to specify a special document-root for a
210 given URL-subset.
211
212 %description mod_alias -l pl
213 Modul alias s³u¿y do okre¶lania specjalnego drzewa (document-roota)
214 dla podanego podzbioru URL-i.
215
216 %package mod_auth
217 Summary:        lighttpd module for authentication support
218 Summary(pl):    Modu³ lighttpd do obs³ugi uwierzytelniania
219 Group:          Networking/Daemons
220 Requires:       %{name} = %{version}-%{release}
221 Provides:       webserver(auth)
222
223 %description mod_auth
224 lighttpd supportes both authentication method described by RFC 2617:
225 basic and digest.
226
227 %description mod_auth -l pl
228 lighttpd obs³uguje obie metody uwierzytelniania opisane w RFC 2617:
229 basic i digest.
230
231 %package mod_cgi
232 Summary:        lighttpd module for CGI handling
233 Summary(pl):    Modu³ lighttpd do obs³ugi CGI
234 Group:          Networking/Daemons
235 Requires:       %{name} = %{version}-%{release}
236 Requires:       %{name}-mod_alias = %{version}-%{release}
237 Provides:       webserver(cgi)
238
239 %description mod_cgi
240 The cgi module provides a CGI-conforming interface.
241
242 CGI programs allow you to enhance the functionality of the server in a
243 very straight and simple way.
244
245 %description mod_cgi -l pl
246 Modu³ cgi udostêpnia interfejs zgodny z CGI.
247
248 Programy CGI pozwalaj± rozszerzaæ funkcjonalno¶æ serwera w bardzo
249 prosty i naturalny sposób.
250
251 %package mod_cml
252 Summary:        lighttpd module for Cache Meta Language
253 Summary(pl):    Modu³ Cache Meta Language
254 Group:          Networking/Daemons
255 Requires:       %{name} = %{version}-%{release}
256
257 %description mod_cml
258 CML is a Meta language to describe the dependencies of a page at one
259 side and building a page from its fragments on the other side using
260 LUA.
261
262 %description mod_cml -l pl
263 CML to metajêzyk s³u¿±cy z jednej strony do opisu zale¿no¶ci strony i
264 z drugiej strony do budowania strony z fragmentów przy u¿yciu LUA.
265
266 %package mod_compress
267 Summary:        lighttpd module for output compression
268 Summary(pl):    Modu³ lighttpd do kompresji wyj¶cia
269 Group:          Networking/Daemons
270 Requires:       %{name} = %{version}-%{release}
271
272 %description mod_compress
273 Output compression reduces the network load and can improve the
274 overall throughput of the webserver.
275
276 Only static content is supported up to now.
277
278 The server negotiates automatically which compression method is used.
279 Supported are gzip, deflate, bzip.
280
281 %description mod_compress -l pl
282 Kompresja wyj¶cia zmniejsza obci±¿enie sieci i mo¿e poprawiæ ca³kowit±
283 przepustowo¶æ serwera WWW.
284
285 Jak na razie obs³ugiwana jest tylko statyczna tre¶æ.
286
287 Serwer automatycznie negocjuje, która metoda kompresji jest u¿ywana.
288 Obs³ugiwane s± gzip, deflate i bzip.
289
290 %package mod_deflate
291 Summary:        lighttpd module for output compression using deflate method
292 Summary(pl):    Modu³ lighttpd do kompresji wyj¶cia metod± deflate
293 Group:          Networking/Daemons
294 URL:            http://trac.lighttpd.net/trac/wiki/Mod_Deflate
295 Requires:       %{name} = %{version}-%{release}
296
297 %description mod_deflate
298 mod_deflate can compress any output from lighttpd static or dynamic.
299 It doesn't support caching compressed output like mod_compress.
300
301 %description mod_deflate -l pl
302 mod_deflate potrafi kompresowaæ statyczne i dynamiczne wyj¶cie z
303 lighttpd. Nie obs³uguje cache'owania wyniku kompresji, jak robi to
304 mod_compress.
305
306 %package mod_dirlisting
307 Summary:        lighttpd module for directory listings
308 Summary(pl):    Modu³ lighttpd do tworzenia listingów katalogów
309 Group:          Networking/Daemons
310 Requires:       %{name} = %{version}-%{release}
311
312 %description mod_dirlisting
313 mod_dirlisting generates HTML based directory listings with full CSS
314 control.
315
316 %description mod_dirlisting -l pl
317 mod_dirlisting tworzy listingi katalogów w formacie HTML z pe³n±
318 kontrol± CSS.
319
320 %package mod_evasive
321 Summary:        lighttpd evasive module
322 Summary(pl):    Modu³ evasive dla lighttpd
323 Group:          Networking/Daemons
324 Requires:       %{name} = %{version}-%{release}
325
326 %description mod_evasive
327 lighttpd evasive module.
328
329 %description mod_evasive -l pl
330 Modu³ evasive dla lighttpd.
331
332 %package mod_evhost
333 Summary:        lighttpd module for enhanced virtual-hosting
334 Summary(pl):    Modu³ lighttpd rozszerzaj±cy obs³ugê hostów wirtualnych
335 Group:          Networking/Daemons
336 Requires:       %{name} = %{version}-%{release}
337
338 %description mod_evhost
339 mod_evhost builds the document-root based on a pattern which contains
340 wildcards. Those wildcards can represent parts of the submitted
341 hostname.
342
343 %description mod_evhost -l pl
344 mod_evhost tworzy document-root w oparciu o wzorzec zawieraj±cy znaki
345 wieloznaczne (wildcards). Znaki te reprezentuj± czê¶ci przekazanej
346 nazwy hosta.
347
348 %package mod_expire
349 Summary:        lighttpd module for controlling the expiration of content in caches
350 Summary(pl):    Modu³ lighttpd steruj±cy wygasaniem tre¶ci w cache'ach
351 Group:          Networking/Daemons
352 Requires:       %{name} = %{version}-%{release}
353
354 %description mod_expire
355 mod_expire controls the setting of the the Expire response header.
356
357 %description mod_expire -l pl
358 mod_expire steruje ustawianiem nag³ówka odpowiedzi Expire.
359
360 %package mod_extforward
361 Summary:        lighttpd module to extract the client's "real" ip from X-Forwarded-For header
362 Group:          Networking/Daemons
363 Requires:       %{name} = %{version}-%{release}
364
365 %description mod_extforward
366 This module will extract the client's "real" ip from X-Forwarded-For
367 header which is added by squid or other proxies. It might be useful
368 for servers behind reverse proxy servers.
369
370 %package mod_fastcgi
371 Summary:        lighttpd module for FastCGI interface
372 Summary(pl):    Modu³ lighttpd do interfejsu FastCGI
373 Group:          Networking/Daemons
374 Requires:       %{name} = %{version}-%{release}
375
376 %description mod_fastcgi
377 The FastCGI interface is the fastest and most secure way to interface
378 external process-handlers like Perl, PHP and your self-written
379 applications.
380
381 %description mod_fastcgi -l pl
382 Interfejs FastCGI to najszybszy i najbezpieczniejszy sposób
383 komunikacji z zewnêtrznymi programami obs³uguj±cymi procesy, takimi
384 jak Perl, PHP czy w³asne aplikacje.
385
386 %package mod_flv_streaming
387 Summary:        lighttpd module for flv streaming
388 Summary(pl):    Modu³ lighttpd do streamingu flv
389 Group:          Networking/Daemons
390 Requires:       %{name} = %{version}-%{release}
391
392 %description mod_flv_streaming
393 lighttpd module for flv streaming.
394
395 %description mod_flv_streaming -l pl
396 Modu³ lighttpd do streamingu flv.
397
398 %package mod_indexfile
399 Summary:        lighttpd indexfile module
400 Summary(pl):    Modu³ indexfile dla lighttpd
401 Group:          Networking/Daemons
402 Requires:       %{name} = %{version}-%{release}
403 Provides:       webserver(indexfile)
404
405 %description mod_indexfile
406 indexfile module.
407
408 %description mod_indexfile -l pl
409 Modu³ indexfile.
410
411 %package mod_magnet
412 Summary:        lighttpd powermagnet module
413 Summary(pl):    Modu³ powermagnet dla lighttpd
414 Group:          Networking/Daemons
415 Requires:       %{name} = %{version}-%{release}
416
417 %description mod_magnet
418 mod_magnet is a module to control the request handling in lighty.
419
420 %description mod_magnet -l pl
421 mod_magnet to modu³ steruj±cy obs³ug± ¿±dañ w lighty.
422
423 %package mod_mysql_vhost
424 Summary:        lighttpd module for MySQL based vhosting
425 Summary(pl):    Modu³ lighttpd obs³uguj±cy vhosty oparte na MySQL-u
426 Group:          Networking/Daemons
427 Requires:       %{name} = %{version}-%{release}
428 Conflicts:      %{name}-mod_simple_vhost
429
430 %description mod_mysql_vhost
431 This module provides virtual hosts (vhosts) based on a MySQL table.
432
433 %description mod_mysql_vhost -l pl
434 Ten modu³ udostêpnia wirtualne hosty (vhosty) oparte na tabeli MySQL.
435
436 %package mod_proxy
437 Summary:        lighttpd module for proxying requests
438 Summary(pl):    Modu³ lighttpd do przekazywania ¿±dañ
439 Group:          Networking/Daemons
440 Requires:       %{name} = %{version}-%{release}
441
442 %description mod_proxy
443 The proxy module a simplest way to connect lighttpd to Java servers
444 which have a HTTP-interface.
445
446 %description mod_proxy -l pl
447 Modu³ proxy to najprostszy sposób ³±czenia lighttpd z serwerami Javy
448 maj±cymi interfejs HTTP.
449
450 %package mod_proxy_core
451 Summary:        lighttpd module for proxying requests
452 Summary(pl):    Modu³ lighttpd do przekazywania ¿±dañ
453 Group:          Networking/Daemons
454 URL:            http://blog.lighttpd.net/articles/2006/07/18/mod_proxy_core-commited-to-svn
455 Requires:       %{name} = %{version}-%{release}
456
457 %description mod_proxy_core
458 The proxy module a simplest way to connect lighttpd to java servers
459 which have a HTTP-interface.
460
461 This is the new proxy code.
462
463 %description mod_proxy_core -l pl
464 Modu³ proxy to najprostszy sposób ³±czenia lighttpd z serwerami Javy
465 maj±cymi interfejs HTTP.
466
467 Ten pakiet zawiera nowy modu³ proxy.
468
469 %package mod_redirect
470 Summary:        lighttpd module for URL redirects
471 Summary(pl):    Modu³ lighttpd do przekierowañ URL-i
472 Group:          Networking/Daemons
473 Requires:       %{name} = %{version}-%{release}
474
475 %description mod_redirect
476 With mod_redirect module you can redirect a set of URLs externally.
477
478 %description mod_redirect -l pl
479 Przy u¿yciu modu³u mod_redirect mo¿na przekierowaæ zbiór URL-i na
480 zewn±trz.
481
482 %package mod_rewrite
483 Summary:        lighttpd module for internal redirects, URL rewrite
484 Summary(pl):    Modu³ lighttpd do wewnêtrznych przekierowañ i przepisywania URL-i
485 Group:          Networking/Daemons
486 Requires:       %{name} = %{version}-%{release}
487
488 %description mod_rewrite
489 This module allows you rewrite a set of URLs interally in the
490 webserver BEFORE they are handled.
491
492 %description mod_rewrite -l pl
493 Ten modu³ pozwala na przepisywanie zbioru URL-i wewnêtrznie w serwerze
494 WWW _przed_ ich obs³ug±.
495
496 %package mod_rrdtool
497 Summary:        lighttpd module for monitoring traffic and server load
498 Summary(pl):    Modu³ lighttpd do monitorowania ruchu i obci±¿enia serwera
499 Group:          Networking/Daemons
500 Requires:       %{name} = %{version}-%{release}
501 Requires:       rrdtool
502
503 %description mod_rrdtool
504 RRD is a system to store and display time-series data (i.e. network
505 bandwidth, machine-room temperature, server load average).
506
507 With this module you can monitor the traffic and load on the
508 webserver.
509
510 %description mod_rrdtool -l pl
511 RRD to system przechowywania i wy¶wietlania danych zale¿nych od czasu
512 (np. obci±¿enia sieci, temperatury w serwerowni, ¶redniego obci±¿enia
513 serwera).
514
515 Przy u¿yciu tego modu³u mo¿na monitorowaæ ruch i obci±¿enie serwera
516 WWW.
517
518 %package mod_scgi
519 Summary:        lighttpd module for SCGI interface
520 Summary(pl):    Modu³ lighttpd do interfejsu SCGI
521 Group:          Networking/Daemons
522 Requires:       %{name} = %{version}-%{release}
523
524 %description mod_scgi
525 SCGI is a fast and simplified CGI interface. It is mostly used by
526 Python + WSGI.
527
528 %description mod_scgi -l pl
529 SCGI to szybki i uproszczony interfejs CGI. Jest u¿ywany g³ównie przez
530 Pythona z WSGI.
531
532 %package mod_secdownload
533 Summary:        lighttpd module for secure and fast downloading
534 Summary(pl):    Modu³ lighttpd do bezpiecznego i szybkiego ¶ci±gania danych
535 Group:          Networking/Daemons
536 Requires:       %{name} = %{version}-%{release}
537
538 %description mod_secdownload
539 With this module you can easily achieve authenticated file requests
540 and a countermeasure against deep-linking.
541
542 %description mod_secdownload -l pl
543 Przy u¿yciu tego modu³u mo¿na ³atwo umo¿liwiæ ¶ci±ganie plików z
544 uwierzytelnieniem i zapobiec u¿ywaniu bezpo¶rednich odno¶ników.
545
546 %package mod_setenv
547 Summary:        lighttpd module for setting conditional request headers
548 Summary(pl):    Modu³ lighttpd do ustawiania warunkowych nag³ówków ¿±dañ
549 Group:          Networking/Daemons
550 Requires:       %{name} = %{version}-%{release}
551
552 %description mod_setenv
553 mod_setenv is used to add request headers.
554
555 %description mod_setenv -l pl
556 mod_setenv s³u¿y do dodawania nag³ówków ¿±dañ.
557
558 %package mod_simple_vhost
559 Summary:        lighttpd module for simple virtual-hosting
560 Summary(pl):    Modu³ lighttpd do prostych hostów wirtualnych
561 Group:          Networking/Daemons
562 Requires:       %{name} = %{version}-%{release}
563 Conflicts:      %{name}-mod_mysql_vhost
564
565 %description mod_simple_vhost
566 lighttpd module for simple virtual-hosting.
567
568 %description mod_simple_vhost -l pl
569 Modu³ lighttpd do prostych hostów wirtualnych.
570
571 %package mod_ssi
572 Summary:        lighttpd module for server-side includes
573 Summary(pl):    Modu³ lighttpd do SSI (server-side includes)
574 Group:          Networking/Daemons
575 Requires:       %{name} = %{version}-%{release}
576
577 %description mod_ssi
578 The module for server-side includes provides a compatability layer for
579 NSCA/Apache SSI.
580
581 %description mod_ssi -l pl
582 Modu³ server-side includes udostêpnia warstwê kompatybilno¶ci z SSI
583 znanym z NSCA/Apache'a.
584
585 %package mod_staticfile
586 Summary:        lighttpd module for static file serving
587 Summary(pl):    Modu³ lighttpd do serwowania statycznych plików
588 Group:          Networking/Daemons
589 Requires:       %{name} = %{version}-%{release}
590
591 %description mod_staticfile
592 lighttpd module for static file serving.
593
594 %description mod_staticfile -l pl
595 Modu³ lighttpd do serwowania statycznych plików.
596
597 %package mod_status
598 Summary:        lighttpd module for displaying server status
599 Summary(pl):    Modu³ lighttpd do wy¶wietlania stanu serwera
600 Group:          Networking/Daemons
601 Requires:       %{name} = %{version}-%{release}
602
603 %description mod_status
604 mod_status displays the server's status and configuration.
605
606 %description mod_status -l pl
607 mod_status wy¶wietla stan i konfiguracjê serwera.
608
609 %package mod_trigger_b4_dl
610 Summary:        Trigger before Download
611 Summary(pl):    Wyzwalacz przed ¶ci±ganiem
612 Group:          Networking/Daemons
613 Requires:       %{name} = %{version}-%{release}
614
615 %description mod_trigger_b4_dl
616 Another anti hot-linking module.
617
618 %description mod_trigger_b4_dl -l pl
619 Jeszcze jeden modu³ blokuj±cy bezpo¶rednie linkowanie.
620
621 %package mod_userdir
622 Summary:        lighttpd module for user homedirs
623 Summary(pl):    Modu³ lighttpd obs³uguj±cy katalogi domowe u¿ytkowników
624 Group:          Networking/Daemons
625 Requires:       %{name} = %{version}-%{release}
626
627 %description mod_userdir
628 The userdir module provides a simple way to link user-based
629 directories into the global namespace of the webserver.
630
631 %description mod_userdir -l pl
632 Modu³ userdir udostêpnia prosty sposób w³±czenia katalogów
633 u¿ytkowników do globalnej przestrzeni nazw serwera WWW.
634
635 %package mod_usertrack
636 Summary:        lighttpd usertrack module
637 Summary(pl):    Modu³ usertrack dla lighttpd
638 Group:          Networking/Daemons
639 Requires:       %{name} = %{version}-%{release}
640
641 %description mod_usertrack
642 lighttpd usertrack module.
643
644 %description mod_usertrack -l pl
645 Modu³ usertrack dla lighttpd.
646
647 %package mod_webdav
648 Summary:        WebDAV module for lighttpd
649 Summary(pl):    Modu³ WebDAV dla libghttpd
650 Group:          Networking/Daemons
651 Requires:       %{name} = %{version}-%{release}
652
653 %description mod_webdav
654 The WebDAV module is a very minimalistic implementation of RFC 2518.
655 Minimalistic means that not all operations are implementated yet.
656
657 So far we have
658 - PROPFIND
659 - OPTIONS
660 - MKCOL
661 - DELETE
662 - PUT
663 - LOCK (experimental)
664
665 and the usual GET, POST, HEAD from HTTP/1.1.
666
667 So far mounting a webdav resource into Windows XP works and the basic
668 litmus tests are passed.
669
670 %description mod_webdav -l pl
671 Modu³ WebDAV to bardzo minimalistyczna implementacja RFC 2518.
672 Minimalistyczna oznacza, ¿e jeszcze nie wszystkie operacje s±
673 zaimplementowane. Jak na razie s±:
674 - PROPFIND
675 - OPTIONS
676 - MKCOL
677 - DELETE
678 - PUT
679 - LOCK (experimental)
680 oraz zwyk³e GET, POST, HEAD z HTTP/1.1.
681
682 Jak na razie montowanie zasobu webdav pod Windows XP dzia³a i
683 podstawowe testy lakmusowe przechodz±.
684
685 %package -n spawn-fcgi
686 Summary:        Spawn fcgi-process directly
687 Summary(pl):    Bezpo¶rednie uruchamianie procesów fcgi
688 Group:          Applications
689
690 %description -n spawn-fcgi
691 spawn-fcgi is used to spawn fcgi-process directly without the help of
692 a webserver or the programm itself.
693
694 %description -n spawn-fcgi -l pl
695 spawn-fcgi s³u¿y do uruchamiania procesów fcgi bezpo¶rednio, bez
696 pomocy serwera WWW ani samego programu.
697
698 %package php-spawned
699 Summary:        PHP support via FastCGI, spawned by lighttpd
700 Summary(pl):    Obs³uga PHP przez FastCGI, uruchamiane przez lighttpd
701 Group:          Networking/Daemons
702 Requires:       %{name} = %{version}-%{release}
703 Requires:       %{name}-mod_fastcgi = %{version}-%{release}
704 Requires:       php-fcgi
705 Obsoletes:      lighttpd-php-external
706
707 %description php-spawned
708 PHP support via FastCGI, spawned by lighttpd.
709
710 %description php-spawned -l pl
711 Obs³uga PHP przez FastCGI, uruchamiane przez lighttpd.
712
713 %package php-external
714 Summary:        PHP support via FastCGI, spawning controlled externally
715 Summary(pl):    Obs³uga PHP przez FastCGI, uruchamianie sterowane zewnêtrznie
716 Group:          Networking/Daemons
717 Requires:       %{name} = %{version}-%{release}
718 Requires:       %{name}-mod_fastcgi = %{version}-%{release}
719 Requires:       php-fcgi-init
720 Obsoletes:      lighttpd-php-spawned
721
722 %description php-external
723 PHP support via FastCGI, spawning controlled externally.
724
725 %description php-external -l pl
726 Obs³uga PHP przez FastCGI, uruchamianie sterowane zewnêtrznie.
727
728 %package ssl
729 Summary:        lighttpd support for SSLv2 and SSLv3
730 Summary(pl):    Obs³uga SSLv2 i SSLv3 dla lighttpd
731 Group:          Networking/Daemons
732 Requires:       %{name} = %{version}-%{release}
733
734 %description ssl
735 lighttpd support for SSLv2 and SSLv3.
736
737 %description ssl -l pl
738 Obs³uga SSLv2 i SSLv3 dla lighttpd.
739
740 %prep
741 %setup -q
742 #%patch100 -p1
743 %patch0 -p1
744 %patch1 -p1
745 %patch3 -p1
746
747 # build mime.types.conf
748 sh %{SOURCE6} /etc/mime.types
749
750 %build
751 %{__libtoolize}
752 %{__aclocal}
753 %{__autoconf}
754 %{__automake}
755
756 %configure \
757         --enable-maintainer-mode \
758         %{!?with_ipv6:--disable-ipv6} \
759         %{!?with_largefile:--disable-lfs} \
760         %{?with_valgrind:--with-valgrind} \
761         %{?with_xattr:--with-attr} \
762         %{?with_mysql:--with-mysql} \
763         %{?with_ldap:--with-ldap} \
764         %{?with_ssl:--with-openssl} \
765         %{?with_lua:--with-lua=lua51} \
766         %{?with_memcache:--with-memcache} \
767         %{?with_webdav_props:--with-webdav-props} \
768         %{?with_webdav_locks:--with-webdav-locks} \
769         %{?with_gamin:--with-gamin} \
770         %{?with_gdbm:--with-gdbm}
771
772 %{__make}
773
774 %install
775 rm -rf $RPM_BUILD_ROOT
776 install -d $RPM_BUILD_ROOT{%{_lighttpddir}/{cgi-bin,html},/etc/{logrotate.d,rc.d/init.d,sysconfig,monit}} \
777         $RPM_BUILD_ROOT%{_sysconfdir}/{conf,webapps}.d \
778         $RPM_BUILD_ROOT{/var/log/{%{name},archiv/%{name}},/var/run/%{name}} \
779         $RPM_BUILD_ROOT%{_datadir}/lighttpd/errors
780
781 %{__make} install \
782         DESTDIR=$RPM_BUILD_ROOT
783
784 install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}
785 install %{SOURCE2} %{SOURCE3} mime.types.conf $RPM_BUILD_ROOT%{_sysconfdir}
786 install %{SOURCE4} $RPM_BUILD_ROOT/etc/logrotate.d/%{name}
787 install %{SOURCE5} $RPM_BUILD_ROOT/etc/sysconfig/%{name}
788 install %{SOURCE12} $RPM_BUILD_ROOT/etc/monit/%{name}.monitrc
789
790 rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
791
792 # could use automake patch, but automake generation fails...
793 mv $RPM_BUILD_ROOT%{_bindir}/spawn-fcgi $RPM_BUILD_ROOT%{_sbindir}/spawn-fcgi
794
795 # Install lighttpd images
796 install %{SOURCE7} %{SOURCE8} %{SOURCE9} $RPM_BUILD_ROOT%{_lighttpddir}/html
797 install %{SOURCE10} $RPM_BUILD_ROOT%{_lighttpddir}/html/pld_button.png
798 install %{SOURCE11} $RPM_BUILD_ROOT%{_lighttpddir}/html/index.html
799
800 # NOTE: the order of the modules is somewhat important as the modules are
801 # handled in the way they are specified. mod_rewrite should always be the first
802 # module, mod_accesslog always the last.
803
804 install %{SOURCE117} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/10_mod_rewrite.conf
805 install %{SOURCE116} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/11_mod_redirect.conf
806
807 install %{SOURCE100} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_access.conf
808 install %{SOURCE102} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_alias.conf
809 install %{SOURCE103} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_auth.conf
810 install %{SOURCE104} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_cgi.conf
811 install %{SOURCE105} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_cml.conf
812 install %{SOURCE106} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_compress.conf
813 install %{SOURCE107} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_deflate.conf
814 install %{SOURCE108} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_dirlisting.conf
815 install %{SOURCE109} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_evasive.conf
816 install %{SOURCE110} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_evhost.conf
817 install %{SOURCE111} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_expire.conf
818 install %{SOURCE135} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_extforward.conf
819 install %{SOURCE112} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_fastcgi.conf
820 install %{SOURCE113} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_flv_streaming.conf
821 install %{SOURCE114} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_indexfile.conf
822 install %{SOURCE134} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_magnet.conf
823 install %{SOURCE115} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_proxy.conf
824 install %{SOURCE118} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_rrdtool.conf
825 install %{SOURCE119} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_scgi.conf
826 install %{SOURCE120} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_secdownload.conf
827 install %{SOURCE121} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_setenv.conf
828 install %{SOURCE122} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_simple_vhost.conf
829 install %{SOURCE123} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_ssi.conf
830 install %{SOURCE124} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_staticfile.conf
831 install %{SOURCE125} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_status.conf
832 install %{SOURCE126} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_trigger_b4_dl.conf
833 install %{SOURCE127} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_userdir.conf
834 install %{SOURCE128} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_usertrack.conf
835 install %{SOURCE129} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_webdav.conf
836 install %{SOURCE133} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_mysql_vhost.conf
837
838 install %{SOURCE101} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/90_mod_accesslog.conf
839
840 install %{SOURCE130} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/php-spawned.conf
841 install %{SOURCE131} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/php-external.conf
842 install %{SOURCE132} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/ssl.conf
843
844 %if !%{with mysql}
845 # avoid packaging dummy module
846 rm -f $RPM_BUILD_ROOT%{_libdir}/mod_mysql_vhost.so
847 rm -f $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/*_mod_mysql_vhost.conf
848 %endif
849 %if !%{with deflate}
850 rm -f $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/*_mod_deflate.conf
851 %endif
852
853 %clean
854 rm -rf $RPM_BUILD_ROOT
855
856 %pre
857 %groupadd -g 109 lighttpd
858 %groupadd -g 51 http
859 %useradd -u 116 -d %{_lighttpddir} -c "LigHTTPd User" -g lighttpd lighttpd
860 %addusertogroup lighttpd http
861
862 %post
863 /sbin/chkconfig --add %{name}
864
865 %preun
866 if [ "$1" = "0" ]; then
867         %service %{name} stop
868         /sbin/chkconfig --del %{name}
869 fi
870
871 %postun
872 if [ "$1" = "0" ]; then
873         %userremove lighttpd
874         %groupremove lighttpd
875         %groupremove http
876 fi
877
878 %posttrans
879 # minimizing lighttpd restarts logics. we restart webserver:
880 #
881 # 1. at the end of transaction. (posttrans, feature from rpm 4.4.2)
882 # 2. first install of module (post: $1 = 1)
883 # 2. uninstall of module (postun: $1 == 0)
884 #
885 # the strict internal deps between lighttpd modules and
886 # main package are very important for all this to work.
887 %service %{name} restart "LigHTTPd webserver"
888 exit 0
889
890 # macro called at module post scriptlet
891 %define module_post \
892 if [ "$1" = "1" ]; then \
893         %service -q lighttpd restart \
894 fi
895
896 # macro called at module postun scriptlet
897 %define module_postun \
898 if [ "$1" = "0" ]; then \
899         %service -q lighttpd restart \
900 fi
901
902 # it's sooo annoying to write them
903 %define module_scripts() \
904 %post %1 \
905 %module_post \
906 \
907 %postun %1 \
908 %module_postun
909
910 %module_scripts mod_access
911 %module_scripts mod_accesslog
912 %module_scripts mod_alias
913 %module_scripts mod_auth
914 %module_scripts mod_cgi
915 %module_scripts mod_cml
916 %module_scripts mod_compress
917 %module_scripts mod_deflate
918 %module_scripts mod_dirlisting
919 %module_scripts mod_evasive
920 %module_scripts mod_evhost
921 %module_scripts mod_expire
922 %module_scripts mod_extforward
923 %module_scripts mod_fastcgi
924 %module_scripts mod_flv_streaming
925 %module_scripts mod_indexfile
926 %module_scripts mod_magnet
927 %module_scripts mod_mysql_vhost
928 %module_scripts mod_proxy
929 %module_scripts mod_redirect
930 %module_scripts mod_rewrite
931 %module_scripts mod_rrdtool
932 %module_scripts mod_scgi
933 %module_scripts mod_secdownload
934 %module_scripts mod_setenv
935 %module_scripts mod_simple_vhost
936 %module_scripts mod_ssi
937 %module_scripts mod_staticfile
938 %module_scripts mod_status
939 %module_scripts mod_trigger_b4_dl
940 %module_scripts mod_userdir
941 %module_scripts mod_usertrack
942 %module_scripts mod_webdav
943
944 %module_scripts php-spawned
945 %module_scripts php-external
946
947 %triggerpostun -- %{name} <= 1.3.6-2
948 %banner %{name} -e <<EOF
949 spawn-fcgi program is now available separately from spawn-fcgi package.
950
951 EOF
952
953 %files
954 %defattr(644,root,root,755)
955 %doc NEWS README ChangeLog doc/lighttpd.conf doc/*.txt doc/rrdtool-graph.sh
956 %dir %attr(750,root,lighttpd) %{_sysconfdir}
957 %dir %attr(750,root,root) %{_sysconfdir}/webapps.d
958 %dir %attr(750,root,root) %{_sysconfdir}/conf.d
959 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/%{name}.conf
960 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/mime.types.conf
961 %attr(640,root,lighttpd) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/*.user
962
963 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/%{name}
964 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/monit/%{name}.monitrc
965 %attr(750,root,root) %dir /var/log/archiv/%{name}
966 %dir %attr(770,root,lighttpd) /var/log/%{name}
967 %dir %attr(770,root,lighttpd) /var/run/%{name}
968 %attr(754,root,root) /etc/rc.d/init.d/%{name}
969 %config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/*
970 %attr(755,root,root) %{_sbindir}/*
971 %dir %{_libdir}
972 %{_mandir}/man?/*
973 %dir %{_lighttpddir}
974 %dir %{_lighttpddir}/cgi-bin
975 %dir %{_lighttpddir}/html
976 %config(noreplace,missingok) %verify(not md5 mtime size) %{_lighttpddir}/html/*
977
978 %dir %{_datadir}/lighttpd
979 %dir %{_datadir}/lighttpd/errordocs
980
981 %files mod_access
982 %defattr(644,root,root,755)
983 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_access.conf
984 %attr(755,root,root) %{_libdir}/mod_access.so
985
986 %files mod_accesslog
987 %defattr(644,root,root,755)
988 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_accesslog.conf
989 %attr(755,root,root) %{_libdir}/mod_accesslog.so
990
991 %files mod_alias
992 %defattr(644,root,root,755)
993 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_alias.conf
994 %attr(755,root,root) %{_libdir}/mod_alias.so
995
996 %files mod_auth
997 %defattr(644,root,root,755)
998 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_auth.conf
999 %attr(755,root,root) %{_libdir}/mod_auth.so
1000
1001 %files mod_cgi
1002 %defattr(644,root,root,755)
1003 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_cgi.conf
1004 %attr(755,root,root) %{_libdir}/mod_cgi.so
1005
1006 %files mod_cml
1007 %defattr(644,root,root,755)
1008 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_cml.conf
1009 %attr(755,root,root) %{_libdir}/mod_cml.so
1010
1011 %files mod_compress
1012 %defattr(644,root,root,755)
1013 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_compress.conf
1014 %attr(755,root,root) %{_libdir}/mod_compress.so
1015
1016 %if %{with deflate}
1017 %files mod_deflate
1018 %defattr(644,root,root,755)
1019 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_deflate.conf
1020 %attr(755,root,root) %{_libdir}/mod_deflate.so
1021 %endif
1022
1023 %files mod_dirlisting
1024 %defattr(644,root,root,755)
1025 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_dirlisting.conf
1026 %attr(755,root,root) %{_libdir}/mod_dirlisting.so
1027
1028 %files mod_evasive
1029 %defattr(644,root,root,755)
1030 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_evasive.conf
1031 %attr(755,root,root) %{_libdir}/mod_evasive.so
1032
1033 %files mod_evhost
1034 %defattr(644,root,root,755)
1035 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_evhost.conf
1036 %attr(755,root,root) %{_libdir}/mod_evhost.so
1037
1038 %files mod_expire
1039 %defattr(644,root,root,755)
1040 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_expire.conf
1041 %attr(755,root,root) %{_libdir}/mod_expire.so
1042
1043 %files mod_extforward
1044 %defattr(644,root,root,755)
1045 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_extforward.conf
1046 %attr(755,root,root) %{_libdir}/mod_extforward.so
1047
1048 %files mod_fastcgi
1049 %defattr(644,root,root,755)
1050 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_fastcgi.conf
1051 %attr(755,root,root) %{_libdir}/mod_fastcgi.so
1052
1053 %files mod_flv_streaming
1054 %defattr(644,root,root,755)
1055 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_flv_streaming.conf
1056 %attr(755,root,root) %{_libdir}/mod_flv_streaming.so
1057
1058 %files mod_indexfile
1059 %defattr(644,root,root,755)
1060 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_indexfile.conf
1061 %attr(755,root,root) %{_libdir}/mod_indexfile.so
1062
1063 %files mod_magnet
1064 %defattr(644,root,root,755)
1065 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_magnet.conf
1066 %attr(755,root,root) %{_libdir}/mod_magnet.so
1067
1068 %if %{with mysql}
1069 %files mod_mysql_vhost
1070 %defattr(644,root,root,755)
1071 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_mysql_vhost.conf
1072 %attr(755,root,root) %{_libdir}/mod_mysql_vhost.so
1073 %endif
1074
1075 %files mod_proxy
1076 %defattr(644,root,root,755)
1077 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_proxy.conf
1078 %attr(755,root,root) %{_libdir}/mod_proxy.so
1079
1080 %files mod_redirect
1081 %defattr(644,root,root,755)
1082 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_redirect.conf
1083 %attr(755,root,root) %{_libdir}/mod_redirect.so
1084
1085 %files mod_rewrite
1086 %defattr(644,root,root,755)
1087 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_rewrite.conf
1088 %attr(755,root,root) %{_libdir}/mod_rewrite.so
1089
1090 %files mod_rrdtool
1091 %defattr(644,root,root,755)
1092 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_rrdtool.conf
1093 %attr(755,root,root) %{_libdir}/mod_rrdtool.so
1094
1095 %files mod_scgi
1096 %defattr(644,root,root,755)
1097 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_scgi.conf
1098 %attr(755,root,root) %{_libdir}/mod_scgi.so
1099
1100 %files mod_secdownload
1101 %defattr(644,root,root,755)
1102 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_secdownload.conf
1103 %attr(755,root,root) %{_libdir}/mod_secdownload.so
1104
1105 %files mod_setenv
1106 %defattr(644,root,root,755)
1107 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_setenv.conf
1108 %attr(755,root,root) %{_libdir}/mod_setenv.so
1109
1110 %files mod_simple_vhost
1111 %defattr(644,root,root,755)
1112 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_simple_vhost.conf
1113 %attr(755,root,root) %{_libdir}/mod_simple_vhost.so
1114
1115 %files mod_ssi
1116 %defattr(644,root,root,755)
1117 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_ssi.conf
1118 %attr(755,root,root) %{_libdir}/mod_ssi.so
1119
1120 %files mod_staticfile
1121 %defattr(644,root,root,755)
1122 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_staticfile.conf
1123 %attr(755,root,root) %{_libdir}/mod_staticfile.so
1124
1125 %files mod_status
1126 %defattr(644,root,root,755)
1127 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_status.conf
1128 %attr(755,root,root) %{_libdir}/mod_status.so
1129
1130 %files mod_trigger_b4_dl
1131 %defattr(644,root,root,755)
1132 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_trigger_b4_dl.conf
1133 %attr(755,root,root) %{_libdir}/mod_trigger_b4_dl.so
1134
1135 %files mod_userdir
1136 %defattr(644,root,root,755)
1137 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_userdir.conf
1138 %attr(755,root,root) %{_libdir}/mod_userdir.so
1139
1140 %files mod_usertrack
1141 %defattr(644,root,root,755)
1142 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_usertrack.conf
1143 %attr(755,root,root) %{_libdir}/mod_usertrack.so
1144
1145 %files mod_webdav
1146 %defattr(644,root,root,755)
1147 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_webdav.conf
1148 %attr(755,root,root) %{_libdir}/mod_webdav.so
1149
1150 %files -n spawn-fcgi
1151 %defattr(644,root,root,755)
1152 %doc doc/spawn-php.sh
1153 %attr(755,root,root) %{_sbindir}/spawn-fcgi
1154
1155 %files php-spawned
1156 %defattr(644,root,root,755)
1157 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/php-spawned.conf
1158
1159 %files php-external
1160 %defattr(644,root,root,755)
1161 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/php-external.conf
1162
1163 %files ssl
1164 %defattr(644,root,root,755)
1165 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ssl.conf
This page took 0.122589 seconds and 4 git commands to generate.