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