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