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