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