]> git.pld-linux.org Git - packages/apache.git/blob - apache.spec
- allow work without systemd-units
[packages/apache.git] / apache.spec
1 # # TODO:
2 # - config examples for mod_*
3 # - --with-suexec-uidmin=500 or =1000 ?
4 # - subpackages for MPMs
5 # - !!!check if all modules (*.so) are exactly the same for different MPMs
6 # - check those autn modules inner deps
7 # - for external packages: don't use any apache module name in dep as they
8 #  differ for apache 1.3/2.0/2.2!? any better ideas? rpm Suggests: tags?
9 # - for mod_auth_* modules require each auth module to require virtual authn so at least *_default
10 #  is chosen?
11 # - same for mod_authz
12 # - mod_auth_digest and mod_auth_basic R: apache(authn) ?
13 # - drop mod_case_filter* or find summary and description for them
14 # - build modules only once (not with each mpm)
15 # - FYI: http://wiki.apache.org/httpd/InternalDummyConnection
16
17 # Conditional build:
18 %bcond_without  ssl             # build without SSL support
19 %bcond_without  ldap            # build without LDAP support
20 %bcond_without  peruser         # peruser MPM
21 %bcond_without  event           # event MPM
22 %bcond_with     itk             # ITK MPM
23 %bcond_with     distcache       # distcache support
24 %bcond_with     bucketeer       # debug one
25
26 # this is internal macro, don't change to %%apache_modules_api
27 %define         _apache_modules_api 20051115
28
29 %if "%{pld_release}" == "ac"
30 %define         openssl_ver     0.9.7d
31 %define         apr_ver         1:1.2
32 %else
33 %define         openssl_ver     0.9.8i
34 %define         apr_ver         1:1.4.5
35 %endif
36 %include        /usr/lib/rpm/macros.perl
37 Summary:        The most widely used Web server on the Internet
38 Summary(de.UTF-8):      Leading World Wide Web-Server
39 Summary(es.UTF-8):      Servidor HTTPD para proveer servicios WWW
40 Summary(fr.UTF-8):      Le serveur web le plus utilise sur Internet
41 Summary(pl.UTF-8):      Serwer WWW (World Wide Web)
42 Summary(pt_BR.UTF-8):   Servidor HTTPD para prover serviços WWW
43 Summary(ru.UTF-8):      Самый популярный веб-сервер
44 Summary(tr.UTF-8):      Lider WWW tarayıcı
45 Name:           apache
46 Version:        2.2.23
47 Release:        1
48 License:        Apache v2.0
49 Group:          Networking/Daemons/HTTP
50 Source0:        http://www.apache.org/dist/httpd/httpd-%{version}.tar.gz
51 # Source0-md5:  77246eaa84a54bb7451f68216333750d
52 Source1:        %{name}.init
53 Source2:        %{name}.logrotate
54 Source3:        %{name}.sysconfig
55 Source4:        %{name}-server.crt
56 Source5:        %{name}-server.key
57 Source6:        %{name}-httpd.conf
58 Source7:        %{name}-common.conf
59 Source8:        %{name}-mod_vhost_alias.conf
60 Source9:        %{name}-mod_status.conf
61 Source10:       %{name}-mod_proxy.conf
62 Source11:       %{name}-mod_info.conf
63 Source12:       %{name}-mod_ssl.conf
64 Source13:       %{name}-mod_dav.conf
65 Source14:       %{name}-mod_dir.conf
66 Source15:       %{name}-mod_suexec.conf
67 Source16:       %{name}-mod_deflate.conf
68 Source17:       %{name}-mod_autoindex.conf
69 Source18:       %{name}-multilang-errordoc.conf
70 Source19:       %{name}-manual.conf
71 Source20:       %{name}-mod_userdir.conf
72 Source21:       %{name}-mpm.conf
73 Source22:       %{name}-languages.conf
74 Source23:       %{name}-mod_mime.conf
75 Source24:       %{name}-mod_authz_host.conf
76 Source25:       %{name}-mod_cgid.conf
77 Source26:       %{name}-mod_log_config.conf
78 Source27:       %{name}-mod_mime_magic.conf
79 Source28:       %{name}-mod_cache.conf
80 Source29:       %{name}-example.net.conf
81 Source30:       %{name}.tmpfiles
82 Source31:       %{name}.service
83 Patch0:         %{name}-configdir_skip_backups.patch
84 Patch1:         %{name}-layout.patch
85 Patch2:         %{name}-suexec.patch
86 Patch3:         %{name}-branding.patch
87 Patch4:         %{name}-apr.patch
88 # what about this? it isn't applied...
89 Patch6:         httpd-2.0.40-xfsz.patch
90 Patch7:         %{name}-syslibs.patch
91 Patch8:         httpd-2.0.45-encode.patch
92 Patch9:         %{name}-paths.patch
93 Patch10:        httpd-2.0.46-dav401dest.patch
94 Patch12:        httpd-2.0.46-sslmutex.patch
95 Patch14:        httpd-2.0.48-corelimit.patch
96 Patch15:        httpd-2.0.48-debuglog.patch
97 Patch18:        %{name}-v6only-ENOPROTOOPT.patch
98 Patch19:        %{name}-conffile-path.patch
99 Patch20:        %{name}-apxs.patch
100 Patch23:        %{name}-suexec_fcgi.patch
101 Patch24:        %{name}-bug-48094.patch
102 # http://scripts.mit.edu/trac/browser/trunk/server/common/patches/httpd-2.2.x-mod_ssl-sessioncaching.patch?rev=1348
103 Patch25:        httpd-2.2.x-mod_ssl-sessioncaching.patch
104 Patch26:        apache-mod_vhost_alias_docroot.patch
105 # http://mpm-itk.sesse.net/
106 Patch28:        apache-mpm-itk.patch
107 Patch29:        libtool-tag.patch
108 URL:            http://httpd.apache.org/
109 BuildRequires:  apr-devel >= %{apr_ver}
110 BuildRequires:  apr-util-devel >= 1:1.3.10-2
111 BuildRequires:  autoconf >= 2.13
112 BuildRequires:  automake
113 %{?with_distcache:BuildRequires:        distcache-devel}
114 BuildRequires:  libtool >= 2:1.5
115 %{?with_ldap:BuildRequires:     openldap-devel >= 2.3.0}
116 %{?with_ssl:BuildRequires:      openssl-devel >= %{openssl_ver}}
117 %{?with_ssl:BuildRequires:      openssl-tools >= %{openssl_ver}}
118 BuildRequires:  pcre-devel
119 BuildRequires:  pkgconfig
120 BuildRequires:  rpm >= 4.4.9-56
121 BuildRequires:  rpm-build >= 4.4.0
122 BuildRequires:  rpm-perlprov >= 4.1-13
123 BuildRequires:  rpmbuild(macros) >= 1.647
124 BuildRequires:  sed >= 4.0
125 BuildRequires:  zlib-devel
126 Requires:       %{name}-errordocs = %{version}-%{release}
127 Requires:       %{name}-mod_alias = %{version}-%{release}
128 Requires:       %{name}-mod_auth = %{version}-%{release}
129 Requires:       %{name}-mod_env = %{version}-%{release}
130 Requires:       %{name}-mod_log_config = %{version}-%{release}
131 Requires:       %{name}-mod_mime = %{version}-%{release}
132 Requires:       %{name}-mod_mime_magic = %{version}-%{release}
133 Requires:       %{name}-mod_negotiation = %{version}-%{release}
134 Requires:       %{name}-mod_setenvif = %{version}-%{release}
135 Requires:       %{name}-mod_speling = %{version}-%{release}
136 Requires:       %{name}-mod_userdir = %{version}-%{release}
137 Requires:       %{name}-mod_version = %{version}-%{release}
138 Requires:       %{name}-tools = %{version}-%{release}
139 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
140
141 %define         _sysconfdir     /etc/httpd
142 %define         _includedir     %{_prefix}/include/apache
143 %define         _datadir        /home/services/httpd
144 %define         _libexecdir     %{_libdir}/apache
145 %define         _cgibindir      %{_prefix}/lib/cgi-bin/%{name}
146
147 %description
148 Apache is a powerful, full-featured, efficient and freely-available
149 Web server. Apache is also the most popular Web server on the
150 Internet.
151
152 %description -l de.UTF-8
153 Apache ist ein voll funktionsfähiger Web-Server, der kostenlos
154 erhältlich und weit verbreitet ist.
155
156 %description -l es.UTF-8
157 El servidor web Apache es el mejor servidor gratuito disponible en el
158 mundo UNIX hoy. Usa HTTP (HyperText Transfer Protocol) para permitir
159 que navegadores vean documentos y sometan datos remotamente. Puede
160 ejecutar varias funciones diferentes, incluyendo funciones de proxy y
161 caché, y nos ofrece características como monitor de estado, conversión
162 dinámica de tipo, y otras más.
163
164 %description -l fr.UTF-8
165 Apache est un serveur Web puissant, efficace, gratuit et complet.
166 Apache est aussi le serveur Web le plus populaire sur Internet.
167
168 %description -l pl.UTF-8
169 Apache jest serwerem WWW (World Wide Web). Instalując ten pakiet
170 będziesz mógł prezentować własne strony WWW w sieci Internet.
171
172 %description -l pt_BR.UTF-8
173 O servidor web Apache é o melhor servidor gratuito disponível no mundo
174 UNIX hoje. Ele usa HTTP (HyperText Transfer Protocol) para permitir
175 que browsers web vejam documentos e submetam dados remotamente. Ele
176 pode executar várias funções diferentes, incluindo funções de proxy e
177 cache, e oferece características como monitor de status, conversão
178 dinâmica de tipo, e mais.
179
180 %description -l ru.UTF-8
181 Apache - мощный, функциональный, высокопроизводительный и свободно
182 распространяемый веб-сервер.
183
184 %description -l tr.UTF-8
185 Apache serbest dağıtılan ve çok kullanılan yetenekli bir web
186 sunucusudur.
187
188 %package base
189 Summary:        The Number One HTTP Server On The Internet
190 Summary(pl.UTF-8):      Wiodący w Internecie serwer HTTP
191 Group:          Networking/Daemons/HTTP
192 Requires(post): fileutils
193 Requires(post,preun):   /sbin/chkconfig
194 Requires(postun):       /usr/sbin/groupdel
195 Requires(postun):       /usr/sbin/userdel
196 Requires(pre):  /bin/id
197 Requires(pre):  /usr/bin/getgid
198 Requires(pre):  /usr/sbin/groupadd
199 Requires(pre):  /usr/sbin/useradd
200 Requires(post,preun,postun):    systemd-units >= 38
201 Requires:       /sbin/chkconfig
202 Requires:       apr >= %{apr_ver}
203 Requires:       psmisc >= 20.1
204 Requires:       rc-scripts >= 0.4.1.23
205 Requires:       sed >= 4.0
206 Requires:       systemd-units >= 38
207 Provides:       apache(modules-api) = %{_apache_modules_api}
208 Provides:       group(http)
209 Provides:       user(http)
210 Provides:       webserver = apache
211 Obsoletes:      apache-extra
212 Obsoletes:      apache6
213 # packaged by mistake. really sample code
214 Obsoletes:      apache-mod_optional_fn_export
215 Obsoletes:      apache-mod_optional_fn_import
216 Obsoletes:      apache-mod_optional_fn_import
217 Obsoletes:      apache-mod_optional_hook_import
218 Conflicts:      apache < 2.2.0
219 Conflicts:      logrotate < 3.7-4
220 # for the posttrans scriptlet, conflicts because in vserver environment rpm package is not installed.
221 Conflicts:      rpm < 4.4.2-0.2
222
223 %description base
224 Apache is a powerful, full-featured, efficient and freely-available
225 Web server. Apache is also the most popular Web server on the
226 Internet.
227
228 %description base -l pl.UTF-8
229 Apache jest potężnym, w pełni funkcjonalnym, wydajnym i wolnodostępnym
230 serwerem WWW (World Wide Web). Jest także najbardziej popularnym
231 serwerem WWW w Internecie.
232
233 %package suexec
234 Summary:        Apache suexec wrapper
235 Summary(pl.UTF-8):      Wrapper suexec do serwera WWW Apache
236 Group:          Networking/Daemons/HTTP
237 URL:            http://httpd.apache.org/docs/2.2/suexec.html
238 Requires:       %{name}-base = %{version}-%{release}
239
240 %description suexec
241 The suEXEC feature provides Apache users the ability to run CGI and
242 SSI programs under user IDs different from the user ID of the calling
243 web-server. Normally, when a CGI or SSI program executes, it runs as
244 the same user who is running the web server.
245
246 %description suexec -l pl.UTF-8
247 SuEXEC umożliwia serwerowi Apache uruchamianie programów CGI i SSI z
248 innym UID niż wywołujący je serwer. Normalnie programy CGI i SSI są
249 wykonywane jako taki sam użytkownik jak serwer WWW.
250
251 %package tools
252 Summary:        Apache tools
253 Summary(pl.UTF-8):      Narzędzia Apache'a
254 Group:          Development/Tools
255
256 %description tools
257 Apache tools.
258
259 %description tools -l pl.UTF-8
260 Narzędzia Apache'a.
261
262 %package index
263 Summary:        Apache index.html* files
264 Summary(pl.UTF-8):      Pliki Apache index.html*
265 Group:          Documentation
266 Requires:       %{name}-base = %{version}-%{release}
267 Obsoletes:      indexhtml
268
269 %description index
270 Apache index.html* files.
271
272 %description index -l pl.UTF-8
273 Pliki index.html* Apache'a.
274
275 %package doc
276 Summary:        Apache manual
277 Summary(pl.UTF-8):      Podręcznik Apache'a
278 Group:          Documentation
279 Requires:       %{name}-base = %{version}-%{release}
280 Requires:       %{name}-mod_alias = %{version}-%{release}
281 Requires:       %{name}-mod_dir = %{version}-%{release}
282 Requires:       %{name}-mod_negotiation = %{version}-%{release}
283 Requires:       %{name}-mod_setenvif = %{version}-%{release}
284
285 %description doc
286 Apache manual.
287
288 %description doc -l pl.UTF-8
289 Podręcznik Apache'a.
290
291 %package errordocs
292 Summary:        Multi-language error messages for Apache
293 Summary(pl.UTF-8):      Wielojęzyczne komunikaty błędów dla Apache'a
294 Group:          Applications/WWW
295 URL:            http://httpd.apache.org/docs-project/
296 Requires:       %{name}-base = %{version}-%{release}
297 Requires:       %{name}-mod_alias = %{version}-%{release}
298 Requires:       %{name}-mod_authz_host = %{version}-%{release}
299 Requires:       %{name}-mod_include = %{version}-%{release}
300 Requires:       %{name}-mod_negotiation = %{version}-%{release}
301
302 %description errordocs
303 Multi-language error messages.
304
305 %description errordocs -l pl.UTF-8
306 Dokumenty opisujące błędy HTTP dla Apache'a w wielu językach.
307
308 %package devel
309 Summary:        Module development tools for the Apache web server
310 Summary(es.UTF-8):      Archivos de inclusión del Apache para desarrollo de módulos
311 Summary(fr.UTF-8):      Les outils de developpement de modules pour le serveur web Apache
312 Summary(pl.UTF-8):      Pliki nagłówkowe do tworzenia modułów rozszerzeń do serwera WWW Apache
313 Summary(pt_BR.UTF-8):   Arquivos de inclusão do Apache para desenvolvimento de módulos
314 Summary(ru.UTF-8):      Средства разработки модулей для веб-сервера Apache
315 Group:          Networking/Utilities
316 Requires:       apr-util-devel >= 1:1.2
317 Requires:       libtool
318 Obsoletes:      apache-apxs
319 Obsoletes:      apache-static
320
321 %description devel
322 The apache-devel package contains header files for Apache.
323
324 %description devel -l es.UTF-8
325 Este paquete contiene los archivos de inclusión para el Apache, bien
326 como el utilitario apxs para la construcción de objetos compartidos
327 dinámicos (DSOs). Ha ce falta instalar este paquete si deseas compilar
328 o desarrollar módulos adicionales para Apache.
329
330 %description devel -l fr.UTF-8
331 Le package apache-devel contient le code source pour le serveur Web
332 Apache et le binaire APXS dont vous aurez besoin pour construire des
333 Objets Dynamiques Partages (DSOs) pour Apache.
334
335 %description devel -l pl.UTF-8
336 Pliki nagłówkowe i inne zasoby niezbędne przy budowaniu modułów DSO
337 (Dynamic Shared Objects) dla Apache'a.
338
339 %description devel -l ru.UTF-8
340 Средства разработки модулей для веб-сервера Apache.
341
342 %description devel -l pt_BR.UTF-8
343 Este pacote contem os arquivos de inclusão para o Apache, bem como o
344 utilitário apxs para a construção de objetos compartilhados dinâmicos
345 (DSOs). Este pacote precisa ser instalado se você deseja compilar ou
346 desenvolver módulos adicionais para o Apache.
347
348 %package mod_actions
349 Summary:        Apache module for executing CGI scripts based on media type or request method
350 Summary(pl.UTF-8):      Moduł Apache'a do uruchamiania skryptów CGI w oparciu o rodzaj danych lub żądania
351 Group:          Networking/Daemons/HTTP
352 URL:            http://httpd.apache.org/docs/2.2/mod/mod_actions.html
353 Requires:       %{name}-base = %{version}-%{release}
354 Provides:       apache(mod_actions) = %{version}-%{release}
355
356 %description mod_actions
357 This module has two directives. The Action directive lets you run CGI
358 scripts whenever a file of a certain MIME content type is requested.
359 The Script directive lets you run CGI scripts whenever a particular
360 method is used in a request. This makes it much easier to execute
361 scripts that process files.
362
363 %description mod_actions -l pl.UTF-8
364 Ten moduł ma dwie dyrektywy. Dyrektywa Action pozwala uruchamiać
365 skrypty CGI przy żądaniu pliku o danym typie zawartości MIME.
366 Dyrektywa Script pozwala uruchamiać skrypty CGI przy danej metodzie
367 żądania. Znacznie ułatwia to wykonywanie skryptów przetwarzających
368 pliki.
369
370 %package mod_alias
371 Summary:        Mapping different parts of the host filesystem in the document tree and for URL redirection
372 Summary(pl.UTF-8):      Odwzorowywanie różnych części systemu plików w drzewie dokumentów i przekierowywanie URL-i
373 Group:          Networking/Daemons/HTTP
374 URL:            http://httpd.apache.org/docs/2.2/mod/mod_alias.html
375 Requires:       %{name}-base = %{version}-%{release}
376 Provides:       apache(mod_alias) = %{version}-%{release}
377 Provides:       webserver(alias)
378
379 %description mod_alias
380 The directives contained in this module allow for manipulation and
381 control of URLs as requests arrive at the server. The Alias and
382 ScriptAlias directives are used to map between URLs and filesystem
383 paths. This allows for content which is not directly under the
384 DocumentRoot served as part of the web document tree. The ScriptAlias
385 directive has the additional effect of marking the target directory as
386 containing only CGI scripts.
387
388 The Redirect directives are used to instruct clients to make a new
389 request with a different URL. They are often used when a resource has
390 moved to a new location.
391
392 mod_alias is designed to handle simple URL manipulation tasks. For
393 more complicated tasks such as manipulating the query string, use the
394 tools provided by mod_rewrite.
395
396 %description mod_alias -l pl.UTF-8
397 Dyrektywy zawarte w tym module umożliwiają manipulacje i sterowanie
398 URL-ami kiedy żądania są dostarczane do serwera. Dyrektywy Alias i
399 ScriptAlias są używane do odwzorowywania między URL-ami i ścieżkami w
400 systemie plików. Umożliwia to serwowanie treści nie będącej
401 bezpośrednio wewnątrz DocumentRoota jako część drzewa dokumentów WWW.
402 Dyrektywa ScriptAlias ma dodatkowy efekt oznaczania katalogu
403 docelowego jako zawierającego wyłącznie skrypty CGI.
404
405 Dyrektywy Redirect służą do instruowania klientów, aby wykonali nowe
406 żądanie z innym URL-em. Są używane zwykle w przypadku, gdy zasoby
407 zostały przeniesione w inne miejsce.
408
409 mod_alias został zaprojektowany do obsługi prostych manipulacji na
410 URL-ach. Bardziej skomplikowane zadania, takie jak modyfikowanie
411 łańcucha zapytania można wykonać przy użyciu mod_rewrite.
412
413 %package mod_asis
414 Summary:        Sends files that contain their own HTTP headers
415 Summary(pl.UTF-8):      Wysyłanie plików zawierających własne nagłówki HTTP
416 Group:          Networking/Daemons/HTTP
417 URL:            http://httpd.apache.org/docs/2.2/mod/mod_asis.html
418 Requires:       %{name}-base = %{version}-%{release}
419 Provides:       apache(mod_asis) = %{version}-%{release}
420
421 %description mod_asis
422 This module provides the handler send-as-is which causes Apache to
423 send the document without adding most of the usual HTTP headers.
424
425 This can be used to send any kind of data from the server, including
426 redirects and other special HTTP responses, without requiring a
427 cgi-script or an nph script.
428
429 For historical reasons, this module will also process any file with
430 the mime type httpd/send-as-is.
431
432 %description mod_asis -l pl.UTF-8
433 Ten moduł udostępnia procesurę obsługi send-as-is powodującą, że
434 Apache wysyła dokument bez dodawania większości zwykle używanych
435 nagłówków HTTP.
436
437 Może to być używane do wysyłania dowolnego rodzaju danych z serwera,
438 włącznie z przekierowaniami i innymi specjalnymi odpowiedziami HTTP
439 bez wymagania skryptu CGI lub nph.
440
441 %package mod_auth
442 Summary:        Virtual package which provides backward compatibility with apache 2.0
443 Summary(pl.UTF-8):      Pakiet wirtualny zapewniający kompatybilność wsteczną z apache 2.0
444 Group:          Networking/Daemons/HTTP
445 Requires:       %{name}-base = %{version}-%{release}
446 Requires:       %{name}-mod_auth_basic = %{version}-%{release}
447 Requires:       %{name}-mod_authn_file = %{version}-%{release}
448 Requires:       %{name}-mod_authz_groupfile = %{version}-%{release}
449 Requires:       %{name}-mod_authz_user = %{version}-%{release}
450 Provides:       apache(mod_auth) = %{version}-%{release}
451 Provides:       webserver(auth)
452
453 %description mod_auth
454 Virtual package which requires apache-mod_authn_file,
455 apache-mod_authz_user and apache-mod_authz_groupfile for backward
456 compatibility with apache 2.0.
457
458 %description mod_auth -l pl.UTF-8
459 Pakiet wirtualny wymagający apache-mod_authn_file,
460 apache-mod_authz_user i apache-mod_authz_groupfile dla kompatybilności
461 wstecznej z apache 2.0.
462
463 %package mod_auth_basic
464 Summary:        Apache module that allows Basic authentication
465 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający korzystawnie z uwierzytelnienia Basic
466 Group:          Networking/Daemons/HTTP
467 URL:            http://httpd.apache.org/docs/2.2/mod/mod_auth_basic.html
468 Requires:       %{name}-base = %{version}-%{release}
469 Provides:       apache(mod_auth_basic) = %{version}-%{release}
470
471 %description mod_auth_basic
472 This module allows the use of HTTP Basic Authentication to restrict
473 access by looking up users in the given providers.
474
475 HTTP Digest Authentication is provided by mod_auth_digest. This module
476 should usually be combined with at least one authentication module
477 such as mod_authn_file and one authorization module such as
478 mod_authz_user.
479
480 %description mod_auth_basic -l pl.UTF-8
481 Ten moduł pozwala używać uwierzytelnienia HTTP Basic do ograniczania
482 dostępu poprzez wyszukiwanie użytkowników we wskazanych miejscach
483
484 %package mod_auth_dbm
485 Summary:        Virtual package which provides backward compatibility with apache 2.0
486 Summary(pl.UTF-8):      Pakiet wirtualny zapewniający kompatybilność wsteczną z apache 2.0
487 Group:          Networking/Daemons/HTTP
488 Requires:       %{name}-base = %{version}-%{release}
489 Requires:       %{name}-dbmtools = %{version}-%{release}
490 Requires:       %{name}-mod_authn_dbm = %{version}-%{release}
491 Requires:       %{name}-mod_authz_dbm = %{version}-%{release}
492 Provides:       apache(mod_auth_dbm) = %{version}-%{release}
493
494 %description mod_auth_dbm
495 Virtual package which requires apache-mod_authn_dbm and
496 apache-mod_authz_dbm for backward compatibility with apache 2.0.
497
498 %description mod_auth_dbm -l pl.UTF-8
499 Pakiet wirtualny wymagający apache-mod_authn_dbm i
500 apache-mod_authz_dbm dla kompatybilności wstecznej z apache 2.0.
501
502 %package mod_auth_digest
503 Summary:        User authentication using MD5 Digest Authentication
504 Summary(pl.UTF-8):      Uwierzytelnianie użytkowników przy użyciu MD5 Digest
505 Group:          Networking/Daemons/HTTP
506 URL:            http://httpd.apache.org/docs/2.2/mod/mod_auth_digest.html
507 Requires:       %{name}-base = %{version}-%{release}
508 Provides:       apache(mod_auth_digest) = %{version}-%{release}
509
510 %description mod_auth_digest
511 This module implements HTTP Digest Authentication. However, it has not
512 been extensively tested and is therefore marked experimental.
513
514 %description mod_auth_digest -l pl.UTF-8
515 Ten moduł implementuje uwierzytelnienie HTTP Digest. Nie został on
516 jednak zbyt obszernie przetestowany, więc jest oznaczony jako
517 eksperymentalny.
518
519 %package mod_authn_alias
520 Summary:        Apache module that provides the ability to create extended authentication
521 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający tworzenie rozszerzonego uwierzytelniania
522 Group:          Networking/Daemons/HTTP
523 URL:            http://httpd.apache.org/docs/2.2/mod/mod_authn_alias.html
524 Requires:       %{name}-base = %{version}-%{release}
525 Provides:       apache(mod_authn_alias) = %{version}-%{release}
526
527 %description mod_authn_alias
528 This module allows extended authentication providers to be created
529 within the configuration file and assigned an alias name.
530
531 %description mod_authn_alias -l pl.UTF-8
532 Ten moduł umożliwia tworzenie rozszerzonych sposobów uwierzytelniania
533 w pliku konfiguracyjnym i nadawanie im aliasów.
534
535 %package mod_authn_anon
536 Summary:        Apache module that allows "anonymous" user access to authenticated areas
537 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający dostęp anonimowych użytkowników do stref uwierzytelnianych
538 Group:          Networking/Daemons/HTTP
539 URL:            http://httpd.apache.org/docs/2.2/mod/mod_authn_anon.html
540 Requires:       %{name}-base = %{version}-%{release}
541 Provides:       apache(mod_authn_anon) = %{version}-%{release}
542 # compat
543 Provides:       apache(mod_auth_anon) = %{version}-%{release}
544 Provides:       apache-mod_auth_anon = %{version}-%{release}
545 Obsoletes:      apache-mod_auth_anon < 2.2.0-0.5
546
547 %description mod_authn_anon
548 This module provides authentication front-ends such as mod_auth_basic
549 to authenticate users similar to anonymous-ftp sites, i.e. have a
550 'magic' user id 'anonymous' and the email address as a password. These
551 email addresses can be logged.
552
553 %description mod_authn_anon -l pl.UTF-8
554 Ten moduł udmożliwia frontendom uwierzytelniającym takim jak
555 mod_auth_basic uwierzytelnianie użytkowników podobnie do serwisów
556 anonimowego ftp, tzn. przez udostępnianie "magicznego" identyfikatora
557 "anonymous" i adresu pocztowego jako hasła. Te adresy pocztowe mogą
558 być logowane.
559
560 %package mod_authn_dbd
561 Summary:        Apache module that allows user authentication using an SQL
562 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający uwierzytelnianie użytkowników przy użyciu tabel SQL
563 Group:          Networking/Daemons/HTTP
564 URL:            http://httpd.apache.org/docs/2.2/mod/mod_authn_dbd.html
565 Requires:       %{name}-base = %{version}-%{release}
566 Requires:       %{name}-mod_dbd = %{version}-%{release}
567 Provides:       apache(mod_authn_dbd) = %{version}-%{release}
568
569 %description mod_authn_dbd
570 This module provides authentication front-ends such as mod_auth_digest
571 and mod_auth_basic to authenticate users by looking up users in SQL
572 tables.
573
574 %description mod_authn_dbd -l pl.UTF-8
575 Ten moduł udostępnia frontendom uwierzytelniającym takim jak
576 mod_auth_digest i mod_auth_basic uwierzytelnianie użytkowników poprzez
577 wyszukiwanie w tabelach SQL.
578
579 %package mod_authn_dbm
580 Summary:        Apache module that allows user authentication using DBM files
581 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający uwierzytelnianie użytkowników przy użyciu plików DBM
582 Group:          Networking/Daemons/HTTP
583 URL:            http://httpd.apache.org/docs/2.2/mod/mod_authn_dbm.html
584 Requires:       %{name}-base = %{version}-%{release}
585 Provides:       apache(mod_authn_dbm) = %{version}-%{release}
586
587 %description mod_authn_dbm
588 This module provides authentication front-ends such as mod_auth_digest
589 and mod_auth_basic to authenticate users by looking up users in DBM
590 password files.
591
592 %description mod_authn_dbm -l pl.UTF-8
593 Ten moduł udostępnia frontendom uwierzytelniającym takim jak
594 mod_auth_digest i mod_auth_basic uwierzytelnianie użytkowników poprzez
595 wyszukiwanie w tabelach haseł DBM.
596
597 %package mod_authn_default
598 Summary:        Apache module that rejects any credentials supplied by the user
599 Summary(pl.UTF-8):      Moduł Apache'a odrzucający wszystkie dane podane przez użytkownika
600 Group:          Networking/Daemons/HTTP
601 URL:            http://httpd.apache.org/docs/2.2/mod/mod_authn_default.html
602 Requires:       %{name}-base = %{version}-%{release}
603 Provides:       apache(mod_authn_default) = %{version}-%{release}
604
605 %description mod_authn_default
606 This module is designed to be the fallback module, if you don't have
607 configured an authentication module like mod_auth_basic. It simply
608 rejects any credentials supplied by the user.
609
610 %description mod_authn_default -l pl.UTF-8
611 Ten moduł został pomyślany jako domyślny moduł uwierzytelniający,
612 jeśli nie skonfigurowano modułu uwierzytelniającego takiego jak
613 mod_auth_basic. Moduł ten po prostu odrzuca wszelkie dane przekazane
614 przez użytkownika.
615
616 %package mod_authn_file
617 Summary:        Apache module that allows user authentication using text files
618 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający uwierzytelnianie użytkowników poprzez pliki tekstowe
619 Group:          Networking/Daemons/HTTP
620 URL:            http://httpd.apache.org/docs/2.2/mod/mod_authn_file.html
621 Requires:       %{name}-base = %{version}-%{release}
622 Provides:       apache(mod_authn_file) = %{version}-%{release}
623
624 %description mod_authn_file
625 This module provides authentication front-ends such as mod_auth_digest
626 and mod_auth_basic to authenticate users by looking up users in plain
627 text password files.
628
629 %description mod_authn_file -l pl.UTF-8
630 Ten moduł udostępnia frontendom uwierzytelniającym takim jak
631 mod_auth_digest i mod_auth_basic uwierzytelnianie użytkowników poprzez
632 wyszukiwanie w plikach tekstowych z hasłami.
633
634 %package mod_authnz_ldap
635 Summary:        Apache module that allows an LDAP directory to be used to store the database for HTTP Basic authentication
636 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający przechowywanie danych dla uwierzytelnienia HTTP Basic w bazie LDAP
637 Group:          Networking/Daemons/HTTP
638 URL:            http://httpd.apache.org/docs/2.2/mod/mod_authnz_ldap.html
639 Requires:       %{name}-base = %{version}-%{release}
640 Requires:       %{name}-mod_ldap = %{version}-%{release}
641 Requires:       apr-util-ldap
642 Provides:       apache(mod_authnz_ldap) = %{version}-%{release}
643 # compat
644 Provides:       apache(mod_auth_ldap) = %{version}-%{release}
645 Provides:       apache-mod_auth_ldap = %{version}-%{release}
646 Obsoletes:      apache-mod_auth_ldap < 2.2.0-0.5
647
648 %description mod_authnz_ldap
649 This module provides authentication front-ends such as mod_auth_basic
650 to authenticate users through an LDAP directory.
651
652 %description mod_authnz_ldap -l pl.UTF-8
653 Ten moduł udostępnia frontendom uwierzytelniającym takim jak
654 mod_auth_basic uwierzytelnianie użytkowników poprzez katalog LDAP.
655
656 %package mod_authz_dbm
657 Summary:        Apache module that allows group authorization using DBM files
658 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający uwierzytelnianie grup z użyciem plików DBM
659 Group:          Networking/Daemons/HTTP
660 URL:            http://httpd.apache.org/docs/2.2/mod/mod_authz_dbm.html
661 Requires:       %{name}-base = %{version}-%{release}
662 Provides:       apache(mod_authz_dbm) = %{version}-%{release}
663
664 %description mod_authz_dbm
665 This module provides authorization capabilities so that authenticated
666 users can be allowed or denied access to portions of the web site by
667 group membership stored in DBM file.
668
669 %description mod_authz_dbm -l pl.UTF-8
670 Ten moduł daje możliwość udostępniania bądź blokowania części serwisu
671 WWW dla uwierzytelnionych użytkowników na podstawie ich przynależności
672 do grupy zapisywanej w pliku DBM.
673
674 %package mod_authz_default
675 Summary:        Apache module that rejects any authorization request
676 Summary(pl.UTF-8):      Moduł Apache'a odrzucający wszystkie żądania autoryzacji
677 Group:          Networking/Daemons/HTTP
678 URL:            http://httpd.apache.org/docs/2.2/mod/mod_authz_default.html
679 Requires:       %{name}-base = %{version}-%{release}
680 Provides:       apache(mod_authz_default) = %{version}-%{release}
681
682 %description mod_authz_default
683 This module is designed to be the fallback module, if you don't have
684 configured an authorization module like mod_authz_user or
685 mod_authz_groupfile. It simply rejects any authorization request.
686
687 %description mod_authz_default -l pl.UTF-8
688 Ten moduł został pomyślany jako domyślny moduł autoryzujący jeśli nie
689 skonfigurowano modułu autoryzującego takiego jak mod_authz_user czy
690 mod_authz_groupfile. Moduł ten po prostu odrzuca wszelkie żądania
691 autoryzacji.
692
693 %package mod_authz_groupfile
694 Summary:        Apache module that allows group authorization using plaintext files
695 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający autoryzację grup przy użyciu plików tekstowych
696 Group:          Networking/Daemons/HTTP
697 URL:            http://httpd.apache.org/docs/2.2/mod/mod_authz_groupfile.html
698 Requires:       %{name}-base = %{version}-%{release}
699 Provides:       apache(mod_authz_groupfile) = %{version}-%{release}
700
701 %description mod_authz_groupfile
702 This module provides authorization capabilities so that authenticated
703 users can be allowed or denied access to portions of the web site by
704 group membership stored in plain text file.
705
706 %description mod_authz_groupfile -l pl.UTF-8
707 Ten moduł daje możliwość udostępniania bądź blokowania części serwisu
708 WWW dla uwierzytelnionych użytkowników na podstawie ich przynależności
709 do grupy zapisywanej w pliku tekstowym.
710
711 %package mod_authz_host
712 Summary:        Apache module that allows group authorizations based on host (name or IP address)
713 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający autoryzację grup w oparcu o host (nazwę lub IP)
714 Group:          Networking/Daemons/HTTP
715 URL:            http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html
716 Requires:       %{name}-base = %{version}-%{release}
717 Provides:       apache(mod_authz_host) = %{version}-%{release}
718 # for apache < 2.2.0
719 Provides:       apache(mod_access) = %{version}-%{release}
720 Provides:       webserver(access)
721
722 %description mod_authz_host
723 The directives provided by mod_authz_host are used in <Directory>,
724 <Files>, and <Location> sections as well as .htaccess files to control
725 access to particular parts of the server. Access can be controlled
726 based on the client hostname, IP address, or other characteristics of
727 the client request, as captured in environment variables.
728
729 %description mod_authz_host -l pl.UTF-8
730 Dyrektyw udostępnianych przez mod_authz_host można używać w sekcjach
731 <Directory>, <Files> i <Location>, a także plikach .htaccess w celu
732 sterowania dostępem do poszczególnych części serwera. Dostępem można
733 sterować na podstawie nazwy hosta klienta, adresu IP lub innej
734 charakterystyki żądania klienta dostępnej w zmiennych środowiskowych.
735
736 %package mod_authz_owner
737 Summary:        Apache module that allows authorization based on file ownership
738 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający autoryzacje w oparciu o własność plików
739 Group:          Networking/Daemons/HTTP
740 URL:            http://httpd.apache.org/docs/2.2/en/mod/mod_authz_owner.html
741 Requires:       %{name}-base = %{version}-%{release}
742 #Requires:      any-auth-module
743 Provides:       apache(mod_authz_owner) = %{version}-%{release}
744
745 %description mod_authz_owner
746 This module authorizes access to files by comparing the userid used
747 for HTTP authentication (the web userid) with the file-system owner or
748 group of the requested file. The supplied username and password must
749 be already properly verified by an authentication module, such as
750 mod_auth_basic or mod_auth_digest.
751
752 %description mod_authz_owner -l pl.UTF-8
753 Ten moduł autoryzuje dostęp do plików poprzez porównanie
754 identyfikatora użytkownika użytego przy uwierzytelnianiu HTTP (web
755 userid) z właścicielem lub grupą żądanego pliku w systemie plików.
756 Podana nazwa użytkownika i hasło muszą być wcześniej zweryfikowane
757 przez moduł uwierzytelniania, taki jak mod_auth_basic lub
758 mod_auth_digest.
759
760 %package mod_authz_user
761 Summary:        Apache module that allows user authorization
762 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający autoryzację użytkowników
763 Group:          Networking/Daemons/HTTP
764 URL:            http://httpd.apache.org/docs/2.2/en/mod/mod_authz_user.html
765 Requires:       %{name}-base = %{version}-%{release}
766 Provides:       apache(mod_authz_user) = %{version}-%{release}
767
768 %description mod_authz_user
769 This module provides authorization capabilities so that authenticated
770 users can be allowed or denied access to portions of the web site.
771
772 %description mod_authz_user -l pl.UTF-8
773 Ten moduł daje możliwość udostępniania bądź blokowania części serwisu
774 WWW dla uwierzytelnionych użytkowników.
775
776 %package mod_autoindex
777 Summary:        Apache module - display index of files
778 Summary(pl.UTF-8):      Moduł apache do wyświetlania indeksu plików
779 Group:          Networking/Daemons/HTTP
780 URL:            http://httpd.apache.org/docs/2.2/en/mod/mod_autoindex.html
781 Requires:       %{name}-base = %{version}-%{release}
782 Requires:       %{name}-mod_alias = %{version}-%{release}
783 Provides:       apache(mod_autoindex) = %{version}-%{release}
784
785 %description mod_autoindex
786 This package contains mod_autoindex module. It provides generation
787 index of files.
788
789 %description mod_autoindex -l pl.UTF-8
790 Ten pakiet dostarcza moduł autoindex, który generuje indeks plików.
791
792 %package mod_bucketeer
793 Summary:        buckets manipulation filter
794 Summary(pl.UTF-8):      Dzielenie kubełków po znalezieniu znaku sterującego
795 Group:          Networking/Daemons/HTTP
796 Requires:       %{name}-base = %{version}-%{release}
797 Provides:       apache(mod_bucketeer) = %{version}-%{release}
798
799 %description mod_bucketeer
800 Split buckets whenever we find a control-char.
801
802 %description mod_bucketeer -l pl.UTF-8
803 Dzielenie kubełków po znalezieniu znaku sterującego.
804
805 %package mod_cache
806 Summary:        Content cache keyed to URIs
807 Summary(pl.UTF-8):      Pamięć podręczna wg klucza URI
808 Group:          Networking/Daemons/HTTP
809 URL:            http://httpd.apache.org/docs/2.2/en/mod/mod_cache.html
810 Requires:       %{name}-base = %{version}-%{release}
811 Provides:       apache(mod_cache) = %{version}-%{release}
812
813 %description mod_cache
814 mod_cache implements an RFC 2616 compliant HTTP content cache that can
815 be used to cache either local or proxied content. Two storage
816 management modules are included in the base Apache distribution:
817 mod_disk_cache implements a disk based storage manager (generally used
818 for proxy caching) and mod_mem_cache implements an in-memory based
819 storage manager (primarily useful for caching local content).
820
821 %description mod_cache -l pl.UTF-8
822 Implementacja zgodnej z RFC 2616 pamięci podręcznej, która może być
823 używana do zapamiętywania zawartości lokalnej lub dostępnej przez
824 proxy. Dołączono dwa moduły pozwalające magazynować dane w pamięci
825 (głównie użyteczne przy cache'owaniu lokalnej zawartości) oraz na
826 dysku (używane do cache'owania proxy).
827
828 %package mod_case_filter
829 Summary:        Apache output filter that converts all output to upper case
830 Summary(pl.UTF-8):      Filtr wyjściowy Apache'a zamieniający wszystkie litery na wielkie
831 Group:          Networking/Daemons/HTTP
832 Requires:       %{name}-base = %{version}-%{release}
833 Provides:       apache(mod_case_filter) = %{version}-%{release}
834
835 %description mod_case_filter
836 Apache output filter that converts all output to upper case.
837
838 %description mod_case_filter -l pl.UTF-8
839 Filtr wyjściowy Apache'a zamieniający wszystkie litery w wyjściu na
840 wielkie.
841
842 %package mod_case_filter_in
843 Summary:        Apache input filter that converts all request body to upper case
844 Summary(pl.UTF-8):      Filtr wejściowy Apache'a zamieniający wszystkie litery w żądaniu na wielkie
845 Group:          Networking/Daemons/HTTP
846 Requires:       %{name}-base = %{version}-%{release}
847 Provides:       apache(mod_case_filter_in) = %{version}-%{release}
848
849 %description mod_case_filter_in
850 Apache input filter that converts all request body (not headers) to
851 upper case.
852
853 %description mod_case_filter_in -l pl.UTF-8
854 Filtr wejściowy Apache'a zamieniający wszystkie litery w ciele żądania
855 (ale nie nagłówkach) na wielkie.
856
857 %package mod_cern_meta
858 Summary:        CERN httpd metafile semantics
859 Summary(pl.UTF-8):      Obsługa semantyki metaplików CERN httpd
860 Group:          Networking/Daemons/HTTP
861 URL:            http://httpd.apache.org/docs/2.2/en/mod/mod_cern_meta.html
862 Requires:       %{name}-base = %{version}-%{release}
863 Provides:       apache(mod_cern_meta) = %{version}-%{release}
864
865 %description mod_cern_meta
866 Emulate the CERN HTTPD Meta file semantics. Meta files are HTTP
867 headers that can be output in addition to the normal range of headers
868 for each file accessed. They appear rather like the Apache .asis
869 files, and are able to provide a crude way of influencing the Expires:
870 header, as well as providing other curiosities. There are many ways to
871 manage meta information, this one was chosen because there is already
872 a large number of CERN users who can exploit this module.
873
874 %description mod_cern_meta -l pl.UTF-8
875 Moduł emulujący semantykę metaplików CERN HTTPD. Metapliki to nagłówki
876 HTTP, które mogą być wysyłane oprócz normalnego zestawu nagłówków dla
877 każdego przetwarzanego pliku. Zachowują się bardziej jak pliki .asis
878 Apache'a i mogą dawać brutalny sposób wpływania na nagłówek Expires:,
879 a także dostarczać inne ciekawostki. Jest wiele sposobów zarządzania
880 metainformacjami, ta została wybrana ponieważ istnieje już wielu
881 użytkowników CERN wykorzystujących ten moduł.
882
883 %package mod_cgi
884 Summary:        Execution of CGI scripts
885 Summary(pl.UTF-8):      Uruchamianie skryptów CGI
886 Group:          Networking/Daemons/HTTP
887 URL:            http://httpd.apache.org/docs/2.2/en/mod/mod_cgi.html
888 Requires:       %{name}-base = %{version}-%{release}
889 Requires:       %{name}-mod_alias = %{version}-%{release}
890 Suggests:       %{name}-suexec = %{version}-%{release}
891 Provides:       apache(mod_cgi) = %{version}-%{release}
892 Provides:       webserver(cgi)
893
894 %description mod_cgi
895 Any file that has the mime type application/x-httpd-cgi or handler
896 cgi-script (Apache 1.1 or later) will be treated as a CGI script, and
897 run by the server, with its output being returned to the client. Files
898 acquire this type either by having a name containing an extension
899 defined by the AddType directive, or by being in a ScriptAlias
900 directory.
901
902 When using a multi-threaded MPM under unix, the module mod_cgid should
903 be used in place of this module. At the user level, the two modules
904 are essentially identical.
905
906 %description mod_cgi -l pl.UTF-8
907 Ten moduł powoduje, że dowolny plik o typie MIME
908 application/x-httpd-cgi albo procedurze obsługi cgi-script (w Apache'u
909 1.1 lub nowszym) będzie traktowany jako skrypt CGI i uruchamiany przez
910 serwer, a jego wyjście będzie zwracane klientowi. Pliki uzyskują ten
911 typ przez posiadanie nazwy zawierającej rozszerzenie określone
912 dyrektywą AddType lub będąc w katalogu ScriptAlias.
913
914 Przy używaniu wielowątkowych MPM pod uniksem zamiast tego modułu
915 należy używać modułu mod_cgid. Z poziomu użytkownika oba te moduły
916 zachowują się identycznie.
917
918 %package mod_cgid
919 Summary:        Execution of CGI scripts using an external CGI daemon
920 Summary(pl.UTF-8):      Uruchamianie zewnętrznych skryptów CGI za pomocą daemona CGI
921 Group:          Networking/Daemons/HTTP
922 URL:            http://httpd.apache.org/docs/2.2/en/mod/mod_cgid.html
923 Requires:       %{name}-base = %{version}-%{release}
924 Requires:       %{name}-mod_alias = %{version}-%{release}
925 Provides:       apache(mod_cgid) = %{version}-%{release}
926 Provides:       webserver(cgi)
927
928 %description mod_cgid
929 Execution of CGI scripts using an external CGI daemon.
930
931 Except for the optimizations and the additional ScriptSock directive,
932 mod_cgid behaves similarly to mod_cgi.
933
934 This module should be used instead of mod_cgi whenever a
935 multi-threaded MPM is selected.
936
937 %description mod_cgid -l pl.UTF-8
938 Uruchamianie skryptów CGI za pomocą zewnętrznego demona CGI.
939
940 Z wyjątkiem optymalizacji i dodatkowej dyrektywy ScriptSock, mod_cgid
941 zachowuje się podobnie do mod_cgi.
942
943 Tego modułu należy używać zamiast mod_cgi zawsze, jeśli wybrano
944 wielowątkowy MPM.
945
946 %package mod_charset_lite
947 Summary:        Specify character set translation or recoding
948 Summary(pl.UTF-8):      Translacja lub przekodowywanie znaków
949 Group:          Networking/Daemons/HTTP
950 URL:            http://httpd.apache.org/docs/2.2/en/mod/mod_charset_lite.html
951 Requires:       %{name}-base = %{version}-%{release}
952 Provides:       apache(mod_charset_lite) = %{version}-%{release}
953
954 %description mod_charset_lite
955 Specify character set translation or recoding.
956
957 This module provides a small subset of configuration mechanisms
958 implemented by Russian Apache and its associated mod_charset.
959
960 This is an experimental module and should be used with care.
961
962 %description mod_charset_lite -l pl.UTF-8
963 Translacja lub przekodowywanie znaków.
964
965 Ten moduł udostępnia niewielki podzbiór mechanizmów konfiguracyjnych
966 zaimplementowanych przez Russian Apache i powiązany z nim mod_charset.
967
968 Jest to moduł eksperymentalny i należy używać go z uwagą.
969
970 %package mod_dav
971 Summary:        Apache module - Distributed Authoring and Versioning
972 Summary(pl.UTF-8):      Moduł Apache'a - rozproszone autorstwo i wersjonowanie
973 Group:          Networking/Daemons/HTTP
974 URL:            http://httpd.apache.org/docs/2.2/en/mod/mod_dav.html
975 Requires:       %{name}-base = %{version}-%{release}
976 Requires:       apache-mod_authn_file
977 Requires:       apache-mod_setenvif
978 Requires:       apr-util-dbm-db
979 Provides:       apache(mod_dav) = %{version}-%{release}
980
981 %description mod_dav
982 This module provides class 1 and class 2 WebDAV ('Web-based
983 Distributed Authoring and Versioning') functionality for Apache. This
984 extension to the HTTP protocol allows creating, moving, copying, and
985 deleting resources and collections on a remote web server.
986
987 %description mod_dav -l pl.UTF-8
988 Moduł udostępnia klasę 1 oraz klasę 2 WebDAV (Bazującego na WWW
989 rozproszonego autorstwa i wersjonowania). To rozszerzenie HTTP pozwala
990 na tworzenie, przesuwanie, kopiowanie oraz kasowanie zasobów na
991 zdalnym serwerze WWW.
992
993 %package mod_dbd
994 Summary:        Manages SQL database connections
995 Summary(pl.UTF-8):      Zarządzanie połączeniami z bazą danych SQL
996 Group:          Networking/Daemons/HTTP
997 URL:            http://httpd.apache.org/docs/2.2/en/mod/mod_dbd.html
998 Requires:       %{name}-base = %{version}-%{release}
999 Provides:       apache(mod_dbd) = %{version}-%{release}
1000
1001 %description mod_dbd
1002 mod_dbd manages SQL database connections using apr_dbd. It provides
1003 database connections on request to modules requiring SQL database
1004 functions, and takes care of managing databases with optimal
1005 efficiency and scalability for both threaded and non-threaded MPMs.
1006
1007 %description mod_dbd -l pl.UTF-8
1008 mod_dbd zarządza połączeniami z bazą danych SQL przy użyciu apr_dbd.
1009 Udostępnia połączenia z bazą danych na żądanie modułów wymagających
1010 funkcji bazy danych SQL, a następnie dba o zarządzanie bazami danych z
1011 optymalną wydajnością i skalowalnością zarówno dla wątkowych jak i
1012 niewątkowych MPM.
1013
1014 %package mod_deflate
1015 Summary:        Apache module: Compress content before it is delivered to the client
1016 Summary(pl.UTF-8):      Moduł Apache'a kompresujący dane przed przesłaniem ich do klienta
1017 Group:          Networking/Daemons/HTTP
1018 URL:            http://httpd.apache.org/docs/2.2/mod/mod_deflate.html
1019 Requires:       %{name}-base = %{version}-%{release}
1020 Requires:       %{name}-mod_headers = %{version}-%{release}
1021 Provides:       apache(mod_deflate) = %{version}-%{release}
1022
1023 %description mod_deflate
1024 Compress content before it is delivered to the client.
1025
1026 %description mod_deflate -l pl.UTF-8
1027 Moduł kompresujący dane przed przesłaniem ich do klienta.
1028
1029 %package mod_dir
1030 Summary:        Apache module for "trailing slash" redirects and serving directory index files
1031 Summary(pl.UTF-8):      Moduł Apache'a oferujący przekierowania i udostępnianie informacji o zawartości katalogu
1032 Group:          Networking/Daemons/HTTP
1033 URL:            http://httpd.apache.org/docs/2.2/mod/mod_dir.html
1034 Requires:       %{name}-base = %{version}-%{release}
1035 Provides:       apache(mod_dir) = %{version}-%{release}
1036 Provides:       webserver(indexfile)
1037
1038 %description mod_dir
1039 This package contains mod_dir which provides "trailing slash"
1040 redirects and serving directory index files.
1041
1042 %description mod_dir -l pl.UTF-8
1043 Moduł oferujący przekierowania i udostępnianie informacji o zawartości
1044 katalogu.
1045
1046 %package mod_dumpio
1047 Summary:        Dumps all I/O to error log as desired
1048 Summary(pl.UTF-8):      Zrzucanie całości wejścia/wyjścia do logu błędów
1049 Group:          Networking/Daemons/HTTP
1050 URL:            http://httpd.apache.org/docs/2.2/mod/mod_dumpio.html
1051 Requires:       %{name}-base = %{version}-%{release}
1052 Provides:       apache(mod_dumpio) = %{version}-%{release}
1053
1054 %description mod_dumpio
1055 mod_dumpio allows for the logging of all input received by Apache
1056 and/or all output sent by Apache to be logged (dumped) to the
1057 error.log file.
1058
1059 The data logging is done right after SSL decoding (for input) and
1060 right before SSL encoding (for output). As can be expected, this can
1061 produce extreme volumes of data, and should only be used when
1062 debugging problems.
1063
1064 %description mod_dumpio -l pl.UTF-8
1065 mod_dumpio umożliwia logowanie całego wejścia otrzymanego przez
1066 Apache'a i/lub całęgo wyjścia wysyłanego przez Apache'a do pliku
1067 error.log.
1068
1069 Logowanie danych następuja zaraz po zdekodowaniu SSL (dla wejścia) i
1070 zaraz przed kodowaniem SSL (dla wyjścia). Jak można się spodziewać, ta
1071 opcja może tworzyć ogromne ilości danych i powinna być używana tylko
1072 przy diagnostyce problemów.
1073
1074 %package mod_echo
1075 Summary:        A simple echo server to illustrate protocol modules
1076 Summary(pl.UTF-8):      Prosty serwer ocho ilustrujący moduły protokołów
1077 Group:          Networking/Daemons/HTTP
1078 URL:            http://httpd.apache.org/docs/2.2/mod/mod_echo.html
1079 Requires:       %{name}-base = %{version}-%{release}
1080 Provides:       apache(mod_echo) = %{version}-%{release}
1081
1082 %description mod_echo
1083 This module provides an example protocol module to illustrate the
1084 concept. It provides a simple echo server. Telnet to it and type
1085 stuff, and it will echo it.
1086
1087 %description mod_echo -l pl.UTF-8
1088 Ten moduł udostępnia przykładowy moduł protokołu ilustrujący ideę.
1089 Udostępnia prosty serwer echo. Można się na niego zatelnetować i
1090 napisać cokolwiek, a on odpowie tym samym.
1091
1092 %package mod_env
1093 Summary:        Modifies the environment which is passed to CGI scripts and SSI pages
1094 Summary(pl.UTF-8):      Modyfikowanie środowiska przekazywanego skryptom CGI i stronom SSI
1095 Group:          Networking/Daemons/HTTP
1096 URL:            http://httpd.apache.org/docs/2.2/mod/mod_env.html
1097 Requires:       %{name}-base = %{version}-%{release}
1098 Provides:       apache(mod_env) = %{version}-%{release}
1099 Provides:       webserver(setenv)
1100
1101 %description mod_env
1102 This module allows for control of the environment that will be
1103 provided to CGI scripts and SSI pages. Environment variables may be
1104 passed from the shell which invoked the httpd process. Alternatively,
1105 environment variables may be set or unset within the configuration
1106 process.
1107
1108 %description mod_env -l pl.UTF-8
1109 Ten moduł pozwala na kontrolę środowiska udostępnianego skryptom CGI i
1110 stronom SSI. Zmienne środowiskowe mogą być przekazywane z powłoki w
1111 czasie uruchamiania procesu httpd, albo - alternatywnie - ustawiane i
1112 usuwane w procesie konfiguracji.
1113
1114 %package mod_expires
1115 Summary:        Apache module which generates Expires HTTP headers
1116 Summary(pl.UTF-8):      Moduł Apache'a generujący nagłówki HTTP Expires
1117 Group:          Networking/Daemons/HTTP
1118 URL:            http://httpd.apache.org/docs/2.2/mod/mod_expires.html
1119 Requires:       %{name}-base = %{version}-%{release}
1120 Provides:       apache(mod_expires) = %{version}-%{release}
1121 Provides:       webserver(expires)
1122
1123 %description mod_expires
1124 This module controls the setting of the Expires HTTP header in server
1125 responses. The expiration date can set to be relative to either the
1126 time the source file was last modified, or to the time of the client
1127 access.
1128
1129 %description mod_expires -l pl.UTF-8
1130 Moduł kontroluje ustawianie nagłówka HTTP Expires. Data wygaśnięcia
1131 ważności może być ustalana w zależności od czasu modyfikacji plików
1132 źródłowych lub odwołania klienta.
1133
1134 %package mod_ext_filter
1135 Summary:        Pass the response body through an external program before delivery to the client
1136 Summary(pl.UTF-8):      Przekazywanie ciała odpowiedzi do zewnętrznego programu przed przekazaniem klientowi
1137 Group:          Networking/Daemons/HTTP
1138 URL:            http://httpd.apache.org/docs/2.2/mod/mod_ext_filter.html
1139 Requires:       %{name}-base = %{version}-%{release}
1140 Provides:       apache(mod_ext_filter) = %{version}-%{release}
1141
1142 %description mod_ext_filter
1143 mod_ext_filter presents a simple and familiar programming model for
1144 filters. With this module, a program which reads from stdin and writes
1145 to stdout (i.e., a Unix-style filter command) can be a filter for
1146 Apache.
1147
1148 This filtering mechanism is much slower than using a filter which is
1149 specially written for the Apache API and runs inside of the Apache
1150 server process, but it does have the following benefits:
1151 - the programming model is much simpler
1152 - any programming/scripting language can be used, provided that it
1153   allows the program to read from standard input and write to standard
1154   output
1155 - existing programs can be used unmodified as Apache filters
1156
1157 Even when the performance characteristics are not suitable for
1158 production use, mod_ext_filter can be used as a prototype environment
1159 for filters.
1160
1161 %description mod_ext_filter -l pl.UTF-8
1162 mod_ext_filter przedstawia prosty i przyjazny model programowania dla
1163 filtrów. Przy użyciu tego modułu program czytający ze standardowego
1164 wejścia i piszący na standardowe wyjście (czyli uniksowe polecenie
1165 filtrujące) może być filtrem dla Apache'a.
1166
1167 Ten mechanizm filtrujący jest znacznie wolniejszy niż użycie filtru
1168 napisanego specjalnie dla API Apache'a i działającego wewnątrz procesu
1169 Apache'a, ale ma następujące zalety:
1170 - znacznie prostszy model programowania
1171 - możliwość użycia dowolnego języka programowania/skryptowego, jeśli
1172   tylko umożliwia czytanie ze standardowego wejścia i pisanie na
1173   standardowe wyjście
1174 - możliwość użycia istniejących programów bez modyfikacji jako filtrów
1175   Apache'a.
1176
1177 Nawet kiedy charakterystyka wydajności nie jest odpowiednia dla użytku
1178 produkcyjnego, mod_ext_filter można używać w środowisku prototypowym
1179 dla filtrów.
1180
1181 %package mod_file_cache
1182 Summary:        Apache module: caches a static list of files in memory
1183 Summary(pl.UTF-8):      Moduł Apache'a cache'ujący statyczną listę plików w pamięci
1184 Group:          Networking/Daemons/HTTP
1185 URL:            http://httpd.apache.org/docs/2.2/mod/mod_file_cache.html
1186 Requires:       %{name}-base = %{version}-%{release}
1187 Provides:       apache(mod_file_cache) = %{version}-%{release}
1188 Obsoletes:      apache-mmap_static
1189
1190 %description mod_file_cache
1191 Caches a static list of files in memory.
1192
1193 This module is an extension of and borrows heavily from the
1194 mod_mmap_static module in Apache 1.3.
1195
1196 %description mod_file_cache -l pl.UTF-8
1197 Moduł cache'ujący statyczną listę plików w pamięci.
1198
1199 %package mod_filter
1200 Summary:        Context-sensitive smart filter configuration module
1201 Summary(pl.UTF-8):      Moduł inteligentnej, zależnej od kontekstu konfiguracji filtrów
1202 Group:          Networking/Daemons/HTTP
1203 URL:            http://httpd.apache.org/docs/2.2/mod/mod_filter.html
1204 Requires:       %{name}-base = %{version}-%{release}
1205 Provides:       apache(mod_filter) = %{version}-%{release}
1206
1207 %description mod_filter
1208 This module enables smart, context-sensitive configuration of output
1209 content filters. For example, apache can be configured to process
1210 different content-types through different filters, even when the
1211 content-type is not known in advance (e.g. in a proxy).
1212
1213 %description mod_filter -l pl.UTF-8
1214 Ten moduł umożliwia inteligentne, zależne od kontekstu konfigurowanie
1215 wyjściowych filtrów treści. Na przykład, Apache'a można skonfigurować
1216 do przetwarzania różnych content-type poprzez różne filtry, nawet
1217 jeśli content-type nie jest znany z góry (np. w wypadku proxy).
1218
1219 %package mod_headers
1220 Summary:        Apache module allows for the customization of HTTP response headers
1221 Summary(pl.UTF-8):      Moduł Apache'a pozwalający na modyfikację nagłówków HTTP
1222 Group:          Networking/Daemons/HTTP
1223 URL:            http://httpd.apache.org/docs/2.2/mod/mod_headers.html
1224 Requires:       %{name}-base = %{version}-%{release}
1225 Provides:       apache(mod_headers) = %{version}-%{release}
1226
1227 %description mod_headers
1228 This package contains mod_headers module. The module allows for the
1229 customization of HTTP response headers. Headers can be merged,
1230 replaced or removed.
1231
1232 %description mod_headers -l pl.UTF-8
1233 Moduł pozwalający na łączenie, usuwanie oraz zamianę nagłówków HTTP
1234 wysyłanych do przeglądarki.
1235
1236 %package mod_ident
1237 Summary:        RFC 1413 ident lookups
1238 Summary(pl.UTF-8):      Sprawdzanie identyfikacji RFC 1413
1239 Group:          Networking/Daemons/HTTP
1240 URL:            http://httpd.apache.org/docs/2.2/mod/mod_ident.html
1241 Requires:       %{name}-base = %{version}-%{release}
1242 Provides:       apache(mod_ident) = %{version}-%{release}
1243
1244 %description mod_ident
1245 This module queries an RFC 1413 compatible daemon on a remote host to
1246 look up the owner of a connection.
1247
1248 %description mod_ident -l pl.UTF-8
1249 Ten moduł odpytuje demona zgodnego z RFC 1413 na zdalnym hoście w celu
1250 sprawdzenia właściciela połączenia.
1251
1252 %package mod_imagemap
1253 Summary:        Server-side imagemap processing
1254 Summary(pl.UTF-8):      Przetwarzanie map obrazów po stronie serwera
1255 Group:          Networking/Daemons/HTTP
1256 URL:            http://httpd.apache.org/docs/2.2/mod/mod_imagemap.html
1257 Requires:       %{name}-base = %{version}-%{release}
1258 Provides:       apache(mod_imagemap) = %{version}-%{release}
1259 Provides:       apache-mod_imap
1260 Obsoletes:      apache-mod_imap
1261
1262 %description mod_imagemap
1263 This module processes .map files, thereby replacing the functionality
1264 of the imagemap CGI program. Any directory or document type configured
1265 to use the handler imap-file (using either AddHandler or SetHandler)
1266 will be processed by this module.
1267
1268 %description mod_imagemap -l pl.UTF-8
1269 Ten moduł przetwarza pliki .map zastępując funkcjonalność programu CGI
1270 imagemap. Dowolny katalog lub rodzaj dokumentu skonfigurowany do
1271 używania procedury obsługi imap-file (poprzez AddHandler lub
1272 SetHandler) będzie przetwarzany przez ten moduł.
1273
1274 %package mod_include
1275 Summary:        Server-parsed html documents (Server Side Includes)
1276 Summary(pl.UTF-8):      Dokumenty przetwarzane przez serwer (Server Side Includes)
1277 Group:          Networking/Daemons/HTTP
1278 URL:            http://httpd.apache.org/docs/2.2/mod/mod_include.html
1279 Requires:       %{name}-base = %{version}-%{release}
1280 Provides:       apache(mod_include) = %{version}-%{release}
1281
1282 %description mod_include
1283 This module provides a filter which will process files before they are
1284 sent to the client. The processing is controlled by specially
1285 formatted SGML comments, referred to as elements. These elements allow
1286 conditional text, the inclusion of other files or programs, as well as
1287 the setting and printing of environment variables.
1288
1289 %description mod_include -l pl.UTF-8
1290 Ten moduł dostarcza procedurę obsługi przetwarzającą pliki przed
1291 wysłaniem ich do klienta. Przetwarzanie jest sterowane specjalnie
1292 sformatowanymi komentarzami SGML, nazywanymi elementami. Elementy te
1293 pozwalają na tekst warunkowy, dołączanie innych plików lub programów,
1294 a także ustawianie i wypisywanie zmiennych środowiskowych.
1295
1296 %package mod_info
1297 Summary:        Apache module with comprehensive overview of the server configuration
1298 Summary(pl.UTF-8):      Moduł Apache'a udostępniający informacje o serwerze
1299 Group:          Networking/Daemons/HTTP
1300 URL:            http://httpd.apache.org/docs/2.2/mod/mod_info.html
1301 Requires:       %{name}-base = %{version}-%{release}
1302 Requires:       %{name}-mod_authz_host = %{version}-%{release}
1303 Provides:       apache(mod_info) = %{version}-%{release}
1304
1305 %description mod_info
1306 This package contains mod_info module. It provides a comprehensive
1307 overview of the server configuration including all installed modules
1308 and directives in the configuration files.
1309
1310 %description mod_info -l pl.UTF-8
1311 Moduł udostępniający informacje o konfiguracji serwera,
1312 zainstalowanych modułach itp.
1313
1314 %package mod_ldap
1315 Summary:        Apache module for LDAP connection pooling and result caching services for other LDAP modules
1316 Summary(pl.UTF-8):      Moduł Apache'a zarządzający połączeniami z serwerami LDAP
1317 Group:          Networking/Daemons/HTTP
1318 URL:            http://httpd.apache.org/docs/2.2/mod/mod_ldap.html
1319 Requires:       %{name}-base = %{version}-%{release}
1320 Provides:       apache(mod_ldap) = %{version}-%{release}
1321
1322 %description mod_ldap
1323 This module was created to improve the performance of websites relying
1324 on backend connections to LDAP servers. In addition to the functions
1325 provided by the standard LDAP libraries, this module adds an LDAP
1326 connection pool and an LDAP shared memory cache.
1327
1328 %description mod_ldap -l pl.UTF-8
1329 Moduł Apache'a poprawiający wydajność serwisów polegających na
1330 połączeniach z serwerami LDAP. Oprócz funkcjo udostępnianych przez
1331 standardowe biblioteki LDAP ten moduł dodaje zarządzanie pulą połączeń
1332 i współdzieloną pamięć podręczną zapytań.
1333
1334 %package mod_log_config
1335 Summary:        Logging of the requests made to the server
1336 Summary(pl.UTF-8):      Logowanie żądań zgłaszanych do serwera
1337 Group:          Networking/Daemons/HTTP
1338 URL:            http://httpd.apache.org/docs/2.2/mod/mod_log_config.html
1339 Requires:       %{name}-base = %{version}-%{release}
1340 Provides:       apache(mod_log_config) = %{version}-%{release}
1341 Provides:       webserver(log)
1342
1343 %description mod_log_config
1344 This module provides for flexible logging of client requests. Logs are
1345 written in a customizable format, and may be written directly to a
1346 file, or to an external program. Conditional logging is provided so
1347 that individual requests may be included or excluded from the logs
1348 based on characteristics of the request.
1349
1350 %description mod_log_config -l pl.UTF-8
1351 Ten moduł umożliwia elastyczne logowanie żądań klientów. Logi są
1352 zapisywane w konfigurowalnym formacie i mogą być zapisywane
1353 bezpośrednio do pliku lub przekazywane do zewnętrznego programu.
1354 Dostępne jest logowanie warunkowe polegające na włączeniu lub
1355 wyłączeniu poszczególnych żądań z logowania na podstawie
1356 charakterystyki żądania.
1357
1358 %package mod_log_forensic
1359 Summary:        Forensic Logging of the requests made to the server
1360 Summary(pl.UTF-8):      Logowanie żadań zgłaszanych do serwera w celu późniejszej analizy
1361 Group:          Networking/Daemons/HTTP
1362 URL:            http://httpd.apache.org/docs/2.2/mod/mod_log_forensic.html
1363 Requires:       %{name}-base = %{version}-%{release}
1364 Provides:       apache(mod_log_forensic) = %{version}-%{release}
1365
1366 %description mod_log_forensic
1367 This module provides for forensic logging of client requests. Logging
1368 is done before and after processing a request, so the forensic log
1369 contains two log lines for each request.
1370
1371 %description mod_log_forensic -l pl.UTF-8
1372 Ten moduł pozwala na logowanie żądań w celu późniejszej analizy.
1373 Logowanie jest wykonywane przed i po przetworzeniu żądania, więc log
1374 zawiera dwie linie dla każdego żądania.
1375
1376 %package mod_logio
1377 Summary:        Logging of input and output bytes per request
1378 Summary(pl.UTF-8):      Logowanie liczby bajtów wejścia i wyjścia dla zapytań
1379 Group:          Networking/Daemons/HTTP
1380 URL:            http://httpd.apache.org/docs/2.2/mod/mod_logio.html
1381 Requires:       %{name}-base = %{version}-%{release}
1382 Requires:       %{name}-mod_log_config = %{version}-%{release}
1383 Provides:       apache(mod_logio) = %{version}-%{release}
1384
1385 %description mod_logio
1386 This module provides the logging of input and output number of bytes
1387 received/sent per request. The numbers reflect the actual bytes as
1388 received on the network, which then takes into account the headers and
1389 bodies of requests and responses. The counting is done before SSL/TLS
1390 on input and after SSL/TLS on output, so the numbers will correctly
1391 reflect any changes made by encryption.
1392
1393 %description mod_logio -l pl.UTF-8
1394 Ten moduł zapewnia logowanie liczby bajtów wejścia i wyjścia
1395 odbieranych/wysyłanych przy każdym zapytaniu. Liczby odzwierciedlają
1396 rzeczywiste bajty przesyłane przez sieć, z wliczonymi nagłówkami i
1397 ciałami żądań i odpowiedzi. Zliczanie jest wykonywane przed SSL/TLS na
1398 wejściu i po SSL/TLS na wyjściu, więc liczby będą właściwie
1399 odzwierciedlały wszystkie zmiany dokonywane przez szyfrowanie.
1400
1401 %package mod_mime
1402 Summary:        Associates the requested filename's extensions with the file's behavior and content
1403 Summary(pl.UTF-8):      Wiązanie określonych rozszerzeń plików z zachowaniem i zawartością
1404 Group:          Networking/Daemons/HTTP
1405 URL:            http://httpd.apache.org/docs/2.2/mod/mod_mime.html
1406 Requires:       %{name}-base = %{version}-%{release}
1407 Requires:       mailcap
1408 Provides:       apache(mod_mime) = %{version}-%{release}
1409 Provides:       webserver(mime)
1410
1411 %description mod_mime
1412 This module is used to associate various bits of "meta information"
1413 with files by their filename extensions. This information relates the
1414 filename of the document to it's mime-type, language, character set
1415 and encoding. This information is sent to the browser, and
1416 participates in content negotiation, so the user's preferences are
1417 respected when choosing one of several possible files to serve. See
1418 mod_negotiation for more information about content negotiation.
1419
1420 %description mod_mime -l pl.UTF-8
1421 Ten moduł służy do wiązania określonych części "metainformacji" z
1422 plikami w zależności od rozszerzeń nazw plików. Informacje te łączą
1423 nazwy plików dokumentów z ich typem MIME, językiem, zestawem znaków i
1424 kodowaniem. Informacje te są wysyłane przeglądarce i mają wpływ na
1425 negocjację treści, tak że preferencje użytkownika są respektowane przy
1426 wybieraniu jednego z kilku dostępnych do zaserwowania. Więcej
1427 informacji o negocjacji treści jest w dokumentacji do mod_negotiation.
1428
1429 %package mod_mime_magic
1430 Summary:        Determines the MIME type of a file by looking at a few bytes of its contents
1431 Summary(pl.UTF-8):      Określanie typu MIME pliku poprzez sprawdzanie kilku bajtów jego zawartości
1432 Group:          Networking/Daemons/HTTP
1433 URL:            http://httpd.apache.org/docs/2.2/mod/mod_mime_magic.html
1434 Requires:       %{name}-base = %{version}-%{release}
1435 Requires:       file
1436 Provides:       apache(mod_mime_magic) = %{version}-%{release}
1437
1438 %description mod_mime_magic
1439 This module determines the MIME type of files in the same way the Unix
1440 file(1) command works: it looks at the first few bytes of the file. It
1441 is intended as a "second line of defense" for cases that mod_mime
1442 can't resolve.
1443
1444 %description mod_mime_magic -l pl.UTF-8
1445 Ten moduł określa typ MIME plików w ten sam sposób, co uniksowe
1446 polecenie file(1): patrzy na kilka początkowych bajtów pliku. Ma
1447 służyć jako "druga linia obrony" dla przypadków, których nie może
1448 rozwiązać mod_mime.
1449
1450 %package mod_negotiation
1451 Summary:        Provides for content negotiation
1452 Summary(pl.UTF-8):      Moduł do negocjacji treści
1453 Group:          Networking/Daemons/HTTP
1454 URL:            http://httpd.apache.org/docs/2.2/mod/mod_negotiation.html
1455 Requires:       %{name}-base = %{version}-%{release}
1456 Requires:       %{name}-mod_mime = %{version}-%{release}
1457 Provides:       apache(mod_negotiation) = %{version}-%{release}
1458
1459 %description mod_negotiation
1460 Content negotiation, or more accurately content selection, is the
1461 selection of the document that best matches the clients capabilities,
1462 from one of several available documents.
1463
1464 %description mod_negotiation -l pl.UTF-8
1465 Negocjacja treści, lub bardziej precyzyjnie - wybór treści, to wybór
1466 dokumentu najbardziej odpowiadającego możliwościom klientów spośród
1467 kilku możliwych dokumentów.
1468
1469 %package mod_proxy
1470 Summary:        Apache module with Web proxy
1471 Summary(pl.UTF-8):      Moduł Apache'a dodający obsługę serwera proxy
1472 Group:          Networking/Daemons/HTTP
1473 URL:            http://httpd.apache.org/docs/2.2/mod/mod_proxy.html
1474 Requires:       %{name}-base = %{version}-%{release}
1475 Requires:       %{name}-mod_authz_host = %{version}-%{release}
1476 Provides:       apache(mod_proxy) = %{version}-%{release}
1477
1478 %description mod_proxy
1479 This package contains module with implementation a proxy/cache for
1480 Apache. It implements proxying capability for FTP, CONNECT (for SSL),
1481 HTTP/0.9, HTTP/1.0 and HTTP/1.1. The module can be configured to
1482 connect to other proxy modules for these and other protocols.
1483
1484 %description mod_proxy -l pl.UTF-8
1485 Moduł zawiera implementację serwera proxy/cache dla Apache.
1486 Implementacja zawiera obsługę FTP, CONNECT (dla SSL), HTTP/0.9,
1487 HTTP/1.0 i HTTP/1.1.
1488
1489 %package mod_reqtimeout
1490 Summary:        Apache module to set timeout and minimum data rate for receiving requests
1491 Summary(pl.UTF-8):      Moduł Apache'a pozwalający na ustawianie limitu czasu oraz minimalnego transferu danych
1492 Group:          Networking/Daemons/HTTP
1493 URL:            http://httpd.apache.org/docs/2.2/mod/mod_reqtimeout.html
1494 Requires:       %{name}-base = %{version}-%{release}
1495 Provides:       apache(mod_reqtimeout) = %{version}-%{release}
1496 Provides:       webserver(reqtimeout)
1497
1498 %description mod_reqtimeout
1499 Apache module to set timeout and minimum data rate for receiving
1500 requests.
1501
1502 %description mod_reqtimeout -l pl.UTF-8
1503 Moduł Apache'a pozwalający na ustawianie limitu czasu oraz minimalnego
1504 transferu danych.
1505
1506 %package mod_rewrite
1507 Summary:        Apache module with rule-based engine for rewrite requested URLs on the fly
1508 Summary(pl.UTF-8):      Moduł Apache'a do "przepisywania" adresów URL w locie
1509 Group:          Networking/Daemons/HTTP
1510 URL:            http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html
1511 Requires:       %{name}-base = %{version}-%{release}
1512 Provides:       apache(mod_rewrite) = %{version}-%{release}
1513 Provides:       webserver(rewrite)
1514
1515 %description mod_rewrite
1516 This package contains It provides a rule-based rewriting engine to
1517 rewrite requested URLs on the fly.
1518
1519 %description mod_rewrite -l pl.UTF-8
1520 Moduł oferujący możliwość "przepisywania" adresów URL w locie.
1521
1522 %package mod_setenvif
1523 Summary:        Allows the setting of environment variables based on characteristics of the request
1524 Summary(pl.UTF-8):      Ustawianie zmiennych środowiskowych w oparciu o charakterystykę żądania
1525 Group:          Networking/Daemons/HTTP
1526 URL:            http://httpd.apache.org/docs/2.2/mod/mod_setenvif.html
1527 Requires:       %{name}-base = %{version}-%{release}
1528 Provides:       apache(mod_setenvif) = %{version}-%{release}
1529
1530 %description mod_setenvif
1531 The mod_setenvif module allows you to set environment variables
1532 according to whether different aspects of the request match regular
1533 expressions you specify. These environment variables can be used by
1534 other parts of the server to make decisions about actions to be taken.
1535
1536 %description mod_setenvif -l pl.UTF-8
1537 Moduł mod_setenvif pozwala na ustawianie zmiennych środowiskowych w
1538 zależności od różnych aspektów żądania pasujących do podanych wyrażeń
1539 regularnych. Te zmienne środowiskowe mogą być używane przez inne
1540 części serwera do podejmowania decyzji o podejmowanych akcjach.
1541
1542 %package mod_speling
1543 Summary:        Attempts to correct mistaken URLs by ignoring capitalization and by allowing up to one misspelling
1544 Summary(pl.UTF-8):      Próba poprawiania błędnych URL-i poprzez ignorowanie wielkości liter i zezwalanie na jedną literówkę
1545 Group:          Networking/Daemons/HTTP
1546 URL:            http://httpd.apache.org/docs/2.2/mod/mod_speling.html
1547 Requires:       %{name}-base = %{version}-%{release}
1548 Provides:       apache(mod_speling) = %{version}-%{release}
1549
1550 %description mod_speling
1551 Requests to documents sometimes cannot be served by the core apache
1552 server because the request was misspelled or miscapitalized. This
1553 module addresses this problem by trying to find a matching document,
1554 even after all other modules gave up. It does its work by comparing
1555 each document name in the requested directory against the requested
1556 document name without regard to case, and allowing up to one
1557 misspelling (character insertion / omission / transposition or wrong
1558 character). A list is built with all document names which were matched
1559 using this strategy.
1560
1561 %description mod_speling -l pl.UTF-8
1562 Czasami żądania dokumentów nie mogą być wykonane przez sam serwer
1563 Apache, ponieważ żądanie zostało napisane z błędem w znakach lub
1564 wielkości liter. Ten moduł próbuje rozwiązać ten problem próbując
1565 znaleźć pasujący dokument, nawet jeśli inne moduły się poddały. Działa
1566 on poprzez porównywanie nazwy każdego dokumentu w żądanym katalogu z
1567 żądaną nazwą dokumentu bez zwracania uwagi na wielkość liter i
1568 pozwalając na jeden błąd (dodany, pominięty, przestawiony lub zły
1569 znak). Tworzona jest lista dla wszystkich nazw dokumentów pasujących
1570 dla tej strategii.
1571
1572 %package mod_ssl
1573 Summary:        SSL/TLS module for the Apache HTTP server
1574 Summary(pl.UTF-8):      Moduł SSL/TSL dla serwera Apache
1575 Summary(ru.UTF-8):      Модуль SSL/TLS для веб-сервера Apache
1576 Epoch:          1
1577 Group:          Networking/Daemons/HTTP
1578 URL:            http://httpd.apache.org/docs/2.2/mod/mod_ssl.html
1579 Requires:       %{name}-base = %{version}-%{release}
1580 Requires:       openssl >= %{openssl_ver}
1581 %if "%{pld_release}" != "ac"
1582 Requires:       apr-util-dbm-db
1583 %endif
1584 Provides:       apache(mod_ssl) = 1:%{version}-%{release}
1585
1586 %description mod_ssl
1587 The mod_ssl module provides strong cryptography for the Apache Web
1588 server via the Secure Sockets Layer (SSL) and Transport Layer Security
1589 (TLS) protocols.
1590
1591 %description mod_ssl -l pl.UTF-8
1592 Moduł mod_ssl udostępnia wsparcie do silnej kryptografii dla serwera
1593 Apache poprzez protokoły SSL/TSL (Secure Sockets Layer/Transport Layer
1594 Security).
1595
1596 %description mod_ssl -l ru.UTF-8
1597 Модуль mod_ssl обеспечивает поддержку в веб-сервере Apache надежного
1598 шифрования средствами Secure Sockets Layer (SSL) и Transport Layer
1599
1600 %package mod_status
1601 Summary:        Server status report module for Apache
1602 Summary(pl.UTF-8):      Moduł udostępniający informacje statystyczne z serwera Apache
1603 Group:          Networking/Daemons/HTTP
1604 URL:            http://httpd.apache.org/docs/2.2/mod/mod_status.html
1605 Requires:       %{name}-base = %{version}-%{release}
1606 Requires:       %{name}-mod_authz_host = %{version}-%{release}
1607 Provides:       apache(mod_status) = %{version}-%{release}
1608
1609 %description mod_status
1610 The Status module allows a server administrator to find out how well
1611 their server is performing. A HTML page is presented that gives the
1612 current server statistics in an easily readable form. If required this
1613 page can be made to automatically refresh (given a compatible
1614 browser).
1615
1616 %description mod_status -l pl.UTF-8
1617 Moduł pozwala administratorowi na przeglądanie statystyk dotyczących
1618 pracy serwera Apache (w postaci strony HTML).
1619
1620 %package mod_substitute
1621 Summary:        Substitute module for Apache
1622 Summary(pl.UTF-8):      Moduł pozwalający na znajdywanie i zastępowanie wyjścia dla serwera Apache
1623 Group:          Networking/Daemons/HTTP
1624 URL:            http://httpd.apache.org/docs/2.2/mod/mod_substitute.html
1625 Requires:       %{name}-base = %{version}-%{release}
1626 Provides:       apache(mod_substitute) = %{version}-%{release}
1627
1628 %description mod_substitute
1629 The Substitute module provides a mechanism to perform both regular
1630 expression and fixed string substitutions on response bodies.
1631
1632 %description mod_substitute -l pl.UTF-8
1633 Moduł pozwala na zastępowanie ciągów znaków w wyjściu również na
1634 podstawie wyrażenia regularnego.
1635
1636 %package mod_unique_id
1637 Summary:        Apache module which provides a magic token for each request
1638 Summary(pl.UTF-8):      Moduł Apache'a nadający każdemu zapytaniu unikalny token
1639 Group:          Networking/Daemons/HTTP
1640 URL:            http://httpd.apache.org/docs/2.2/mod/mod_unique_id.html
1641 Requires:       %{name}-base = %{version}-%{release}
1642 Provides:       apache(mod_unique_id) = %{version}-%{release}
1643
1644 %description mod_unique_id
1645 This package contains the mod_unique_id. This module provides a magic
1646 token for each request which is guaranteed to be unique across "all"
1647 requests under very specific conditions. The unique identifier is even
1648 unique across multiple machines in a properly configured cluster of
1649 machines. The environment variable UNIQUE_ID is set to the identifier
1650 for each request. Unique identifiers are useful for various reasons
1651 which are beyond the scope of this document.
1652
1653 %description mod_unique_id -l pl.UTF-8
1654 Moduł nadaje każdemu zapytaniu token unikalny w ramach wszystkich
1655 zapytań, nawet w ramach poprawnie skonfigurowanego klastra z wielu
1656 maszyn. Moduł ustawia przy każdym zapytaniu zmienną środowiskową
1657 UNIQUE_ID.
1658
1659 %package mod_userdir
1660 Summary:        User-specific directories
1661 Summary(pl.UTF-8):      Katalogi specyficzne dla użytkowników
1662 Group:          Networking/Daemons/HTTP
1663 URL:            http://httpd.apache.org/docs/2.2/mod/mod_userdir.html
1664 Requires:       %{name}-base = %{version}-%{release}
1665 Requires:       %{name}-mod_authz_host = %{version}-%{release}
1666 Provides:       apache(mod_userdir) = %{version}-%{release}
1667
1668 %description mod_userdir
1669 This module allows user-specific directories to be accessed using the
1670 http://example.com/~user/ syntax.
1671
1672 %description mod_userdir -l pl.UTF-8
1673 Ten moduł pozwala na dostęp do katalogów specyficznych dla
1674 użytkowników przy użyciu składni http://example.com/~user/ .
1675
1676 %package mod_usertrack
1677 Summary:        Apache module for user tracking using cookies
1678 Summary(pl.UTF-8):      Moduł Apache'a służący do śledzenia "ciasteczek"
1679 Group:          Networking/Daemons/HTTP
1680 URL:            http://httpd.apache.org/docs/2.2/mod/mod_usertrack.html
1681 Requires:       %{name}-base = %{version}-%{release}
1682 Provides:       apache(mod_usertrack) = %{version}-%{release}
1683
1684 %description mod_usertrack
1685 This package contains the user tracking module which did its own
1686 logging using CookieLog directory. This module allow multiple log
1687 files.
1688
1689 %description mod_usertrack -l pl.UTF-8
1690 Ten pakiet zawiera moduł śledzący użytkowników zapisujący własny log
1691 przy użyciu katalogu CookieLog. Pozwala na użycie wielu plików logów.
1692
1693 %package mod_version
1694 Summary:        Version dependent configuration
1695 Summary(pl.UTF-8):      Konfiguracja zależna od wersji
1696 Group:          Networking/Daemons/HTTP
1697 URL:            http://httpd.apache.org/docs/2.2/mod/mod_version.html
1698 Requires:       %{name}-base = %{version}-%{release}
1699 Provides:       apache(mod_version) = %{version}-%{release}
1700
1701 %description mod_version
1702 This module is designed for the use in test suites and large networks
1703 which have to deal with different httpd versions and different
1704 configurations. It provides a new container -- <IfVersion>, which
1705 allows a flexible version checking including numeric comparisons and
1706 regular expressions.
1707
1708 %description mod_version -l pl.UTF-8
1709 Ten moduł jest przeznaczony do używania w zestawach testów i dużych
1710 sieciach, gdzie trzeba inaczej obsługiwać różne wersje httpd i różne
1711 konfiguracje. Udostępnia nowy kontener: <IfVersion>, umożliwiający
1712 elastyczne sprawdzanie wersji włącznie z porównaniami liczbowymi i
1713 wyrażeniami regularnymi.
1714
1715 %package mod_vhost_alias
1716 Summary:        Apache module for dynamically configured mass virtual hosting
1717 Summary(pl.UTF-8):      Moduł Apache'a dodający obsługę hostów wirtualnych
1718 Group:          Networking/Daemons/HTTP
1719 URL:            http://httpd.apache.org/docs/2.2/mod/mod_vhost_alias.html
1720 Requires:       %{name}-base = %{version}-%{release}
1721 Provides:       apache(mod_vhost_alias) = %{version}-%{release}
1722
1723 %description mod_vhost_alias
1724 This package contains the mod_vhost_alias. It provides support for
1725 dynamically configured mass virtual hosting.
1726
1727 %description mod_vhost_alias -l pl.UTF-8
1728 Moduł umożliwia na dynamiczne konfigurowanie masowej ilości serwerów
1729 wirtualnych.
1730
1731 %package -n htpasswd-%{name}
1732 Summary:        Apache 2 htpasswd utility: manage user files for basic authentication
1733 Summary(pl.UTF-8):      Narzędzie htpasswd z Apache'a 2 do zarządzania plikami uwierzytelnienia basic
1734 Group:          Networking/Utilities
1735 Provides:       htpasswd
1736 Obsoletes:      htpasswd
1737
1738 %description -n htpasswd-%{name}
1739 htpasswd is used to create and update the flat-files used to store
1740 usernames and password for basic authentication of HTTP users. This
1741 package contains htpasswd from Apache 2; this version supports
1742 plaintext passwords and CRYPT (default), MD5 and SHA1 encryptions.
1743
1744 %description -n htpasswd-%{name} -l pl.UTF-8
1745 htpasswd służy do tworzenia i uaktualniania plików tekstowych
1746 służących do przechowywania nazw użytkowników i haseł do podstawowego
1747 uwierzytelnienia użytkowników HTTP. Ten pakiet zawiera htpasswd z
1748 Apache'a 2; ta wersja obsługuje hasła zapisane czystym tekstem oraz
1749 zakodowane algorytmami CRYPT (domyślnym), MD5 i SHA1.
1750
1751 %package dbmtools
1752 Summary:        Apache 2 tools for manipulating DBM files
1753 Summary(pl.UTF-8):      Narzędzia Apache'a 2 do obróbki plików DBM
1754 Group:          Networking/Utilities
1755 Requires:       %{name}-base = %{version}-%{release}
1756
1757 %description dbmtools
1758 Apache 2 tools for manipulating DBM files.
1759
1760 %description dbmtools -l pl.UTF-8
1761 Narzędzia Apache'a 2 do obróbki plików DBM.
1762
1763 %package cgi_test
1764 Summary:        cgi test/demo programs
1765 Summary(pl.UTF-8):      Programy testowe/przykładowe cgi
1766 Group:          Networking/Utilities
1767 Requires:       %{name}-base = %{version}-%{release}
1768 Requires:       filesystem >= 2.0-1
1769
1770 %description cgi_test
1771 Two cgi test/demo programs: test-cgi and print-env.
1772
1773 %description cgi_test -l pl.UTF-8
1774 Dwa programy testowe/przykładowe cgi: test-cgi and print-env.
1775
1776 %prep
1777 %setup -q -n httpd-%{version}
1778 %patch0 -p1
1779 %patch1 -p1
1780 %patch2 -p1
1781 %patch3 -p1
1782 %patch4 -p1
1783 %patch7 -p1
1784 %patch8 -p1
1785 %patch9 -p1
1786 %patch10 -p1
1787 %patch12 -p1
1788 %patch14 -p1
1789 %patch15 -p1
1790 %patch18 -p1
1791 %patch19 -p1
1792 %patch20 -p1
1793 %patch23 -p1
1794 %patch24 -p1
1795 %patch25 -p1
1796 %patch26 -p1
1797 %patch28 -p1
1798 %patch29 -p1
1799
1800 # using system apr, apr-util and pcre
1801 %{__rm} -r srclib/{apr,apr-util,pcre}
1802
1803 # sanity check
1804 MODULES_API=`awk '/#define MODULE_MAGIC_NUMBER_MAJOR/ {print $3}' include/ap_mmn.h`
1805 if [ "$MODULES_API" != "%_apache_modules_api" ]; then
1806         echo "Set %%_apache_modules_api to $MODULES_API and rerun."
1807         exit 1
1808 fi
1809
1810 # fix libdir (at least in PLD layout; no need to care about other ones)
1811 sed -i -e 's,/lib$,/%{_lib},' config.layout
1812
1813 %build
1814 cp /usr/share/apr/build/apr_common.m4 build
1815 %{__libtoolize}
1816 %{__aclocal} -I build
1817 cp /usr/share/automake/config.* build
1818 %{__autoheader}
1819 %{__autoconf}
1820
1821 # from ./buildconf
1822 : fixing timestamps for mod_ssl sources
1823 cd modules/ssl
1824 touch ssl_expr_parse.y
1825 sleep 1
1826 touch ssl_expr_parse.c ssl_expr_parse.h ssl_expr_scan.l
1827 sleep 1
1828 touch ssl_expr_scan.c
1829 cd ../..
1830
1831 CPPFLAGS="-DMAX_SERVER_LIMIT=200000 -DBIG_SECURITY_HOLE=1"
1832 for mpm in prefork worker %{?with_event:event} %{?with_itk:itk}; do
1833 install -d "buildmpm-${mpm}"; cd "buildmpm-${mpm}"
1834 ../%configure \
1835         --enable-layout=PLD \
1836         --disable-v4-mapped \
1837         $( [ "${mpm}" = "prefork" -o "${mpm}" = "worker" -o "${mpm}" = "event" -o "${mpm}" = "itk" ] && echo "--enable-exception-hook" ) \
1838         --enable-modules=all \
1839         --enable-mods-shared=all \
1840         --enable-auth-anon \
1841         --enable-auth-dbm \
1842         --enable-authn-dbd \
1843         --enable-authn-alias \
1844         --enable-authz-dbm \
1845         --enable-authz-owner \
1846         %{?with_ldap:--enable-authnz-ldap} \
1847         --enable-auth-digest \
1848         --enable-file-cache \
1849         --enable-cache \
1850         --enable-disk-cache \
1851         --enable-mem-cache \
1852         --enable-dbd \
1853         %{?with_bucketeer:--enable-bucketeer} \
1854         --enable-dumpio \
1855         --enable-echo \
1856         --enable-charset-lite \
1857         --enable-deflate \
1858         %{?with_ldap:--enable-ldap} \
1859         --enable-ext-filter \
1860         --enable-case-filter \
1861         --enable-case-filter-in \
1862         --enable-log-forensic \
1863         --enable-logio \
1864         --with-z=%{_prefix} \
1865         --enable-mime-magic \
1866         --enable-cern-meta \
1867         --enable-expires \
1868         --enable-headers \
1869         --enable-ident \
1870         --enable-usertrack \
1871         --enable-unique-id \
1872         --enable-proxy \
1873         --enable-proxy-connect \
1874         --enable-proxy-ftp \
1875         --enable-proxy-http \
1876         --enable-proxy-ajp \
1877         --enable-proxy-balancer \
1878         %{?with_ssl:--enable-ssl %{?with_distcache:--enable-distcache}} \
1879         --enable-http \
1880         --enable-dav \
1881         --enable-info \
1882         --enable-suexec \
1883         --enable-cgi \
1884         --enable-cgid \
1885         --enable-dav-fs \
1886         --enable-dav-lock \
1887         --enable-vhost-alias \
1888         --enable-imagemap \
1889         --enable-speling \
1890         --enable-rewrite \
1891         --enable-so \
1892         --with-program-name=httpd.${mpm} \
1893         --with-mpm=${mpm} \
1894 %ifarch %{ix86}
1895 %ifnarch i386 i486
1896         $( [ "${mpm}" = "leader" ] && echo "--enable-nonportable-atomics=yes" ) \
1897 %endif
1898 %endif
1899         --with-suexec-bin=%{_sbindir}/suexec \
1900         --with-suexec-caller=http \
1901         --with-suexec-docroot=%{_datadir} \
1902         --with-suexec-logfile=/var/log/httpd/suexec_log \
1903         --with-suexec-uidmin=500 \
1904         --with-suexec-gidmin=500 \
1905         --with-suexec-umask=077 \
1906         --with-apr=%{_bindir}/apr-1-config \
1907         --with-apr-util=%{_bindir}/apu-1-config \
1908         --with-pcre
1909
1910 %{__make}
1911 ./httpd.${mpm} -l | grep -v "${mpm}" > modules-inside
1912 cd ..
1913
1914 done
1915
1916 for mpm in worker %{?with_event:event} %{?with_itk:itk}; do
1917         if ! cmp -s buildmpm-prefork/modules-inside buildmpm-${mpm}/modules-inside; then
1918                 echo "List of compiled modules is different between prefork-MPM and ${mpm}-MPM!"
1919                 echo "Build failed."
1920                 exit 1
1921         fi
1922 done
1923
1924 %install
1925 rm -rf $RPM_BUILD_ROOT
1926 install -d $RPM_BUILD_ROOT/etc/{logrotate.d,rc.d/init.d,sysconfig,systemd/system} \
1927         $RPM_BUILD_ROOT%{_var}/{log/{httpd,archive/httpd},{run,cache}/httpd,lock/mod_dav} \
1928         $RPM_BUILD_ROOT%{_sysconfdir}/{webapps.d,conf.d,vhosts.d} \
1929         $RPM_BUILD_ROOT%{_datadir}/{cgi-bin,vhosts} \
1930         $RPM_BUILD_ROOT/usr/lib/tmpfiles.d \
1931         $RPM_BUILD_ROOT%{systemdunitdir}
1932
1933 # prefork is default one
1934 %{__make} -C buildmpm-prefork install \
1935         DESTDIR=$RPM_BUILD_ROOT
1936 mpm=prefork
1937 sed -e "s|@EXEC@|%{_sbindir}/httpd.${mpm}|g;s|@NAME@|${mpm}|g" < %{SOURCE31} \
1938         > $RPM_BUILD_ROOT%{systemdunitdir}/httpd-${mpm}.service
1939
1940 # install other mpm-s
1941 for mpm in worker %{?with_event:event} %{?with_itk:itk}; do
1942         install buildmpm-${mpm}/httpd.${mpm} $RPM_BUILD_ROOT%{_sbindir}/httpd.${mpm}
1943         sed -e "s|@EXEC@|%{_sbindir}/httpd.${mpm}|g;s|@NAME@|${mpm}|g" < %{SOURCE31} \
1944                 > $RPM_BUILD_ROOT%{systemdunitdir}/httpd-${mpm}.service
1945 done
1946
1947 ln -s httpd.prefork $RPM_BUILD_ROOT%{_sbindir}/httpd
1948 ln -s %{systemdunitdir}/httpd-prefork.service $RPM_BUILD_ROOT/etc/systemd/system/httpd.service
1949 ln -s %{_libexecdir} $RPM_BUILD_ROOT%{_sysconfdir}/modules
1950 ln -s %{_localstatedir}/run/httpd $RPM_BUILD_ROOT%{_sysconfdir}/run
1951 ln -s %{_var}/log/httpd $RPM_BUILD_ROOT%{_sysconfdir}/logs
1952 ln -s conf.d $RPM_BUILD_ROOT%{_sysconfdir}/httpd.conf
1953
1954 install -p %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/httpd
1955 cp -a %{SOURCE2} $RPM_BUILD_ROOT/etc/logrotate.d/httpd
1956 cp -a %{SOURCE3} $RPM_BUILD_ROOT/etc/sysconfig/httpd
1957
1958 touch $RPM_BUILD_ROOT/var/log/httpd/{access,error,agent,referer,suexec}_log
1959
1960 %if %{with ssl}
1961 install -d $RPM_BUILD_ROOT%{_sysconfdir}/ssl
1962 cp -a %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/ssl/server.crt
1963 cp -a %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/ssl/server.key
1964 %endif
1965
1966 cp -a %{SOURCE6} $RPM_BUILD_ROOT%{_sysconfdir}/apache.conf
1967
1968 CFG="$RPM_BUILD_ROOT%{_sysconfdir}/conf.d"
1969
1970 cp -a %{SOURCE7} $CFG/10_common.conf
1971 cp -a %{SOURCE23} $CFG/01_mod_mime.conf
1972 cp -a %{SOURCE24} $CFG/01_mod_authz_host.conf
1973 cp -a %{SOURCE25} $CFG/01_mod_cgid.conf
1974 cp -a %{SOURCE26} $CFG/01_mod_log_config.conf
1975 cp -a %{SOURCE27} $CFG/01_mod_mime_magic.conf
1976 cp -a %{SOURCE28} $CFG/01_mod_cache.conf
1977 cp -a %{SOURCE8} $CFG/20_mod_vhost_alias.conf
1978 cp -a %{SOURCE9} $CFG/25_mod_status.conf
1979 cp -a %{SOURCE10} $CFG/30_mod_proxy.conf
1980 cp -a %{SOURCE11} $CFG/35_mod_info.conf
1981 cp -a %{SOURCE12} $CFG/40_mod_ssl.conf
1982 cp -a %{SOURCE13} $CFG/45_mod_dav.conf
1983 cp -a %{SOURCE14} $CFG/59_mod_dir.conf
1984 cp -a %{SOURCE15} $CFG/13_mod_suexec.conf
1985 cp -a %{SOURCE16} $CFG/58_mod_deflate.conf
1986 cp -a %{SOURCE17} $CFG/57_mod_autoindex.conf
1987 cp -a %{SOURCE18} $CFG/30_errordocs.conf
1988 cp -a %{SOURCE19} $CFG/30_manual.conf
1989 cp -a %{SOURCE20} $CFG/16_mod_userdir.conf
1990 cp -a %{SOURCE21} $CFG/10_mpm.conf
1991 cp -a %{SOURCE22} $CFG/20_languages.conf
1992 cp -a %{SOURCE29} $RPM_BUILD_ROOT%{_sysconfdir}/vhosts.d/example.net.conf
1993
1994 install %{SOURCE30} $RPM_BUILD_ROOT/usr/lib/tmpfiles.d/%{name}.conf
1995
1996 echo "LoadModule alias_module modules/mod_alias.so" > $CFG/00_mod_alias.conf
1997 echo "LoadModule authn_file_module      modules/mod_authn_file.so" > $CFG/00_mod_authn_file.conf
1998 echo "LoadModule authn_dbm_module       modules/mod_authn_dbm.so" > $CFG/00_mod_authn_dbm.conf
1999 echo "LoadModule authn_anon_module      modules/mod_authn_anon.so" > $CFG/00_mod_authn_anon.conf
2000 echo "LoadModule authn_dbd_module       modules/mod_authn_dbd.so" > $CFG/00_mod_authn_dbd.conf
2001 echo "LoadModule authn_default_module   modules/mod_authn_default.so" > $CFG/00_mod_authn_default.conf
2002 echo "LoadModule authn_alias_module     modules/mod_authn_alias.so" > $CFG/00_mod_authn_alias.conf
2003 echo "LoadModule authz_groupfile_module modules/mod_authz_groupfile.so" > $CFG/00_mod_authz_groupfile.conf
2004 echo "LoadModule authz_user_module      modules/mod_authz_user.so" > $CFG/00_mod_authz_user.conf
2005 echo "LoadModule authz_dbm_module       modules/mod_authz_dbm.so" > $CFG/00_mod_authz_dbm.conf
2006 echo "LoadModule authz_owner_module     modules/mod_authz_owner.so" > $CFG/00_mod_authz_owner.conf
2007 echo "LoadModule authnz_ldap_module     modules/mod_authnz_ldap.so" > $CFG/00_mod_authnz_ldap.conf
2008 echo "LoadModule authz_default_module   modules/mod_authz_default.so" > $CFG/00_mod_authz_default.conf
2009 echo "LoadModule auth_basic_module      modules/mod_auth_basic.so" > $CFG/00_mod_auth_basic.conf
2010 echo "LoadModule dbd_module     modules/mod_dbd.so" > $CFG/00_mod_dbd.conf
2011 %if %{with bucketeer}
2012 echo "LoadModule bucketeer_module       modules/mod_bucketeer.so" > $CFG/00_mod_bucketeer.conf
2013 %endif
2014 echo "LoadModule dumpio_module  modules/mod_dumpio.so" > $CFG/00_mod_dumpio.conf
2015 echo "LoadModule echo_module    modules/mod_echo.so" > $CFG/00_mod_echo.conf
2016 echo "LoadModule case_filter_module     modules/mod_case_filter.so" > $CFG/00_mod_case_filter.conf
2017 echo "LoadModule case_filter_in_module  modules/mod_case_filter_in.so" > $CFG/00_mod_case_filter_in.conf
2018 echo "LoadModule ext_filter_module      modules/mod_ext_filter.so" > $CFG/00_mod_ext_filter.conf
2019 echo "LoadModule include_module modules/mod_include.so" > $CFG/00_mod_include.conf
2020 echo "LoadModule filter_module  modules/mod_filter.so" > $CFG/00_mod_filter.conf
2021 echo "LoadModule log_forensic_module    modules/mod_log_forensic.so" > $CFG/00_mod_log_forensic.conf
2022 echo "LoadModule logio_module   modules/mod_logio.so" > $CFG/00_mod_logio.conf
2023 echo "LoadModule env_module     modules/mod_env.so" > $CFG/00_mod_env.conf
2024 echo "LoadModule cern_meta_module       modules/mod_cern_meta.so" > $CFG/00_mod_cern_meta.conf
2025 echo "LoadModule ident_module   modules/mod_ident.so" > $CFG/00_mod_ident.conf
2026 echo "LoadModule setenvif_module        modules/mod_setenvif.so" > $CFG/00_mod_setenvif.conf
2027 echo "LoadModule version_module modules/mod_version.so" > $CFG/00_mod_version.conf
2028 echo "LoadModule asis_module    modules/mod_asis.so" > $CFG/00_mod_asis.conf
2029 echo "LoadModule cgi_module     modules/mod_cgi.so" > $CFG/00_mod_cgi.conf
2030 echo "LoadModule negotiation_module     modules/mod_negotiation.so" > $CFG/00_mod_negotiation.conf
2031 echo "LoadModule imagemap_module        modules/mod_imagemap.so" > $CFG/00_mod_imagemap.conf
2032 echo "LoadModule speling_module modules/mod_speling.so" > $CFG/00_mod_speling.conf
2033 echo "LoadModule ldap_module    modules/mod_ldap.so" > $CFG/00_mod_ldap.conf
2034 echo "LoadModule actions_module modules/mod_actions.so" > $CFG/00_mod_actions.conf
2035 echo "LoadModule auth_digest_module     modules/mod_auth_digest.so" > $CFG/00_mod_auth_digest.conf
2036 echo "LoadModule charset_lite_module    modules/mod_charset_lite.so" > $CFG/00_mod_charset_lite.conf
2037 echo "LoadModule expires_module modules/mod_expires.so" > $CFG/00_mod_expires.conf
2038 echo "LoadModule file_cache_module      modules/mod_file_cache.so" > $CFG/00_mod_file_cache.conf
2039 echo "LoadModule headers_module modules/mod_headers.so" > $CFG/00_mod_headers.conf
2040 echo "LoadModule rewrite_module modules/mod_rewrite.so" > $CFG/00_mod_rewrite.conf
2041 echo "LoadModule usertrack_module       modules/mod_usertrack.so" > $CFG/00_mod_usertrack.conf
2042 echo "LoadModule unique_id_module       modules/mod_unique_id.so" > $CFG/00_mod_unique_id.conf
2043 echo "LoadModule substitute_module      modules/mod_substitute.so" > $CFG/00_mod_substitute.conf
2044 echo "LoadModule reqtimeout_module      modules/mod_reqtimeout.so" >> $CFG/00_mod_reqtimeout.conf
2045
2046 # anything in style dir not ending with .css is trash
2047 %{__rm} -r $RPM_BUILD_ROOT%{_datadir}/manual/style/{lang,latex,xsl}
2048 find $RPM_BUILD_ROOT%{_datadir}/manual/style -type f ! -name '*.css' -print0 | xargs -0r rm -f
2049
2050 # find manual files
2051 > manual.files
2052 cur=$(pwd)
2053 cd $RPM_BUILD_ROOT
2054 find ./%{_datadir}/manual -type d -printf "%%%%dir %{_datadir}/manual/%%P\n" >> "$cur/manual.files"
2055 find ./%{_datadir}/manual -type f -printf "%{_datadir}/manual/%%P\n" | sed -e '
2056 s/^.*\.\(de\|es\|fr\|ja\|ko\|ru\)\(\..*\)\?/%%lang(\1) &/
2057 s/^.*\.\(pt-br\)/%%lang(pt_BR) &/
2058 ' >> "$cur/manual.files"
2059 cd $cur
2060
2061 # htpasswd goes to %{_bindir}
2062 mv $RPM_BUILD_ROOT%{_sbindir}/htpasswd $RPM_BUILD_ROOT%{_bindir}
2063 ln -sf %{_bindir}/htpasswd $RPM_BUILD_ROOT%{_sbindir}
2064
2065 # cgi_test: create config file with ScriptAlias
2066 cat << 'EOF' > $CFG/09_cgi_test.conf
2067 ScriptAlias /cgi-bin/printenv %{_cgibindir}/printenv
2068 ScriptAlias /cgi-bin/test-cgi %{_cgibindir}/test-cgi
2069 EOF
2070
2071 # our suexec is patched to support php + fcgi + suexec with
2072 # virtual users when called as suexec.fcgi
2073 ln -sf suexec $RPM_BUILD_ROOT%{_sbindir}/suexec.fcgi
2074
2075 # no value
2076 %{__rm} $RPM_BUILD_ROOT%{_libexecdir}/build/config.nice
2077 %{__rm} $RPM_BUILD_ROOT%{_libexecdir}/*.exp
2078 %{__rm} $RPM_BUILD_ROOT%{_sysconfdir}/mime.types
2079 %{__rm} $RPM_BUILD_ROOT%{_sysconfdir}/httpd.prefork.conf
2080 %{__rm} -r $RPM_BUILD_ROOT%{_sysconfdir}/{extra,original}
2081
2082 %clean
2083 rm -rf $RPM_BUILD_ROOT
2084
2085 %pre base
2086 %groupadd -g 51 http
2087 %useradd -u 51 -r -d /home/services/httpd -s /bin/false -c "HTTP User" -g http http
2088
2089 %pretrans base
2090 # change httpd.conf from dir to symlink
2091 if [ ! -L /etc/httpd/httpd.conf ]; then
2092         if [ -d /etc/httpd/httpd.conf ]; then
2093                 if [ -d /etc/httpd/conf.d ]; then
2094                         mv /etc/httpd/httpd.conf/* /etc/httpd/conf.d
2095                         rmdir /etc/httpd/httpd.conf 2>/dev/null || mv -v /etc/httpd/httpd.conf{,.rpmsave}
2096                 else
2097                         mv /etc/httpd/httpd.conf /etc/httpd/conf.d
2098                 fi
2099
2100                 # new module packages issue error as first installed over 2.0 installation
2101                 mv -f /var/lock/subsys/httpd{,.disabled} 2>/dev/null
2102         fi
2103
2104         # always have httpd.conf symlink (until all packages from Ac use new dir)
2105         install -d /etc/httpd
2106         ln -s conf.d /etc/httpd/httpd.conf
2107 fi
2108 exit 0
2109
2110 %post base
2111 /sbin/chkconfig --add httpd
2112 umask 137
2113 touch /var/log/httpd/{access,error,agent,referer}_log
2114 %systemd_post httpd.service
2115
2116 %preun base
2117 if [ "$1" = "0" ]; then
2118         %service httpd stop
2119         /sbin/chkconfig --del httpd
2120 fi
2121 %systemd_preun httpd.service
2122
2123 %postun base
2124 if [ "$1" = "0" ]; then
2125         %userremove http
2126         %groupremove http
2127 fi
2128 %systemd_reload
2129
2130 %triggerpostun base -- %{name} < 2.0.50-6.9
2131 %banner %{name}-2.0.50-6 << EOF
2132 WARNING!!!
2133 Since apache-2.0.50-6 autoindex module has been separated to package
2134 %{name}-mod_autoindex If you want to have the same functionality do:
2135 poldek -Uv %{name}-mod_autoindex
2136 EOF
2137
2138 %triggerpostun base -- %{name} < 2.0.54-4
2139 %banner %{name}-2.0.54-2 << EOF
2140 WARNING!!!
2141 CGI demo/test programs - printenv and test-cgi, have been released
2142 from package apache into separate subpackage apache-cgi_test. If you
2143 need printenv and/or test-cgi, please install apache-cgi_test package,
2144 e.g. by running poldek -Uv apache-cgi_test
2145 EOF
2146
2147 # update /etc/sysconfig/apache -> httpd rename
2148 if [ -f /etc/sysconfig/apache.rpmsave ]; then
2149         cp -f /etc/sysconfig/httpd{,.rpmnew}
2150         mv -f /etc/sysconfig/{apache.rpmsave,httpd}
2151 fi
2152
2153 %triggerpostun base -- %{name} < 2.0.55-3.1
2154 # check for config first as in 2.2 it's .rpmsave
2155 if [ -f /etc/httpd/httpd.conf/10_httpd.conf ]; then
2156         if ! grep -q 'Include webapps.d/' /etc/httpd/httpd.conf/10_httpd.conf; then
2157                 # make sure webapps.d is included
2158                 cp -f /etc/httpd/httpd.conf/10_httpd.conf{,.rpmsave}
2159                 # this file is ugly, so just append new lines
2160                 cat <<-EOF >> /etc/httpd/httpd.conf/10_httpd.conf
2161                 # Include webapps config
2162                 Include webapps.d/*.conf
2163 EOF
2164         fi
2165 fi
2166
2167 %triggerpostun base -- %{name} < 2.2.0
2168 # change HTTPD_CONF to point to new location. *only* if it's the
2169 # default config setting
2170 cp -f /etc/sysconfig/httpd{,.rpmorig}
2171 sed -i -e '/^HTTPD_CONF="\/etc\/httpd\/httpd.conf"/s,.*,HTTPD_CONF="/etc/httpd/apache.conf",' /etc/sysconfig/httpd
2172
2173 if [ -f /etc/httpd/conf.d/10_httpd.conf.rpmsave ]; then
2174         sed -e '
2175         # as separate modules
2176         /^LoadModule access_module/s,^,#,
2177         /^LoadModule alias_module/s,^,#,
2178         /^LoadModule asis_module/s,^,#,
2179         /^LoadModule cern_meta_module/s,^,#,
2180         /^LoadModule cgi_module/s,^,#,
2181         /^LoadModule env_module/s,^,#,
2182         /^LoadModule include_module/s,^,#,
2183         /^LoadModule log_config_module/s,^,#,
2184         /^LoadModule mime_magic_module/s,^,#,
2185         /^LoadModule mime_module/s,^,#,
2186         /^LoadModule negotiation_module/s,^,#,
2187         /^LoadModule setenvif_module/s,^,#,
2188         /^LoadModule speling_module/s,^,#,
2189         /^LoadModule userdir_module/s,^,#,
2190
2191         # in 30_errordocs.conf
2192         /<IfModule mod_include.c>/,/<\/IfModule>/s,^,#,
2193
2194         # in 57_mod_autoindex.conf
2195         /^Alias \/icons\//s,^,#,
2196
2197         # in apache.conf
2198         /^ScriptAlias \/cgi-bin\//s,^,#,
2199         /^Listen 80/s,^,#,
2200
2201         # avoid loops
2202         /Include conf.d\/\*.conf/s,^,#,
2203         /Include webapps.d\/\*.conf/s,^,#,
2204
2205         ' < /etc/httpd/conf.d/10_httpd.conf.rpmsave > /etc/httpd/conf.d/10_httpd.conf
2206 fi
2207
2208 %banner -e %{name} <<'EOF'
2209 NB! Apache main config has been changed to /etc/httpd/apache.conf
2210
2211 There has been changed a lot, so many things could be broken.
2212 Please report bugs to <http://bugs.pld-linux.org/>.
2213
2214 EOF
2215
2216 %triggerpostun base -- %{name} < 2.2.22-2
2217 . /etc/sysconfig/httpd
2218 if [ -z "$HTTPD_CONF" ]; then
2219         echo 'HTTPD_CONF="/etc/httpd/apache.conf"' >> /etc/sysconfig/httpd
2220 fi
2221 %systemd_trigger httpd.service
2222
2223 %triggerpostun mod_ssl -- %{name}-mod_ssl < 1:2.2.0-3.1
2224 cp -f /etc/httpd/conf.d/40_mod_ssl.conf{,.rpmsave}
2225 sed -i -e '
2226         s,/var/run/apache,/var/run/httpd,g
2227         s,/var/cache/apache,/var/cache/httpd,g
2228 ' /etc/httpd/conf.d/40_mod_ssl.conf
2229
2230 %posttrans base
2231 # restore lock which we disabled in pretrans
2232 mv -f /var/lock/subsys/httpd{.disabled,} 2>/dev/null
2233
2234 # minimizing apache restarts logics. we restart webserver:
2235 #
2236 # 1. at the end of transaction. (posttrans, feature from rpm 4.4.2)
2237 # 2. first install of module (post: $1 = 1)
2238 # 2. uninstall of module (postun: $1 == 0)
2239 #
2240 # the strict internal deps between apache modules and
2241 # main package are very important for all this to work.
2242
2243 # restart webserver at the end of transaction
2244 %service httpd restart
2245 %systemd_service_restart httpd.service
2246
2247 # macro called at module post scriptlet
2248 %define module_post \
2249 if [ "$1" = "1" ]; then \
2250         %service -q httpd restart \
2251         %systemd_service_restart httpd.service \
2252 fi
2253
2254 # macro called at module postun scriptlet
2255 %define module_postun \
2256 if [ "$1" = "0" ]; then \
2257         %service -q httpd restart \
2258         %systemd_service_restart httpd.service \
2259 fi
2260
2261 # it's sooo annoying to write them
2262 %define module_scripts() \
2263 %post %1 \
2264 %module_post \
2265 \
2266 %postun %1 \
2267 %module_postun
2268
2269 %module_scripts mod_actions
2270 %module_scripts mod_alias
2271 %module_scripts mod_asis
2272 %module_scripts mod_auth_basic
2273 %module_scripts mod_auth_dbm
2274 %module_scripts mod_auth_digest
2275 %module_scripts mod_authn_alias
2276 %module_scripts mod_authn_anon
2277 %module_scripts mod_authn_dbd
2278 %module_scripts mod_authn_dbm
2279 %module_scripts mod_authn_default
2280 %module_scripts mod_authn_file
2281 %module_scripts mod_authnz_ldap
2282 %module_scripts mod_authz_dbm
2283 %module_scripts mod_authz_default
2284 %module_scripts mod_authz_groupfile
2285 %module_scripts mod_authz_host
2286 %module_scripts mod_authz_owner
2287 %module_scripts mod_authz_user
2288 %module_scripts mod_autoindex
2289 %module_scripts mod_bucketeer
2290 %module_scripts mod_cache
2291 %module_scripts mod_case_filter
2292 %module_scripts mod_case_filter_in
2293 %module_scripts mod_cern_meta
2294 %module_scripts mod_cgi
2295 %module_scripts mod_cgid
2296 %module_scripts mod_charset_lite
2297 %module_scripts mod_dav
2298 %module_scripts mod_dbd
2299 %module_scripts mod_deflate
2300 %module_scripts mod_dir
2301 %module_scripts mod_dumpio
2302 %module_scripts mod_echo
2303 %module_scripts mod_env
2304 %module_scripts mod_expires
2305 %module_scripts mod_ext_filter
2306 %module_scripts mod_file_cache
2307 %module_scripts mod_filter
2308 %module_scripts mod_headers
2309 %module_scripts mod_ident
2310 %module_scripts mod_imagemap
2311 %module_scripts mod_include
2312 %module_scripts mod_info
2313 %module_scripts mod_ldap
2314 %module_scripts mod_log_config
2315 %module_scripts mod_log_forensic
2316 %module_scripts mod_logio
2317 %module_scripts mod_mime
2318 %module_scripts mod_mime_magic
2319 %module_scripts mod_negotiation
2320 %module_scripts mod_proxy
2321 %module_scripts mod_reqtimeout
2322 %module_scripts mod_rewrite
2323 %module_scripts mod_setenvif
2324 %module_scripts mod_speling
2325 %module_scripts mod_ssl
2326 %module_scripts mod_status
2327 %module_scripts mod_substitute
2328 %module_scripts mod_unique_id
2329 %module_scripts mod_userdir
2330 %module_scripts mod_usertrack
2331 %module_scripts mod_version
2332 %module_scripts mod_vhost_alias
2333 %module_scripts suexec
2334
2335 %post cgi_test
2336 if [ "$1" = "1" ]; then
2337         %service -q httpd reload
2338         %systemd_service_reload httpd.service
2339 fi
2340
2341 %postun cgi_test
2342 if [ "$1" = "0" ]; then
2343         %service -q httpd reload
2344         %systemd_service_reload httpd.service
2345 fi
2346
2347 %post errordocs
2348 if [ "$1" = "1" ]; then
2349         %service -q httpd reload
2350         %systemd_service_reload httpd.service
2351 fi
2352
2353 %postun errordocs
2354 if [ "$1" = "0" ]; then
2355         %service -q httpd reload
2356         %systemd_service_reload httpd.service
2357 fi
2358
2359 %files
2360 %defattr(644,root,root,755)
2361
2362 %files base
2363 %defattr(644,root,root,755)
2364 %doc ABOUT_APACHE CHANGES README
2365 %doc docs/conf/mime.types
2366 %attr(754,root,root) /etc/rc.d/init.d/httpd
2367 %attr(751,root,root) %dir %{_sysconfdir}
2368 %{_sysconfdir}/modules
2369 %{_sysconfdir}/run
2370 %{_sysconfdir}/logs
2371 %ghost %{_sysconfdir}/httpd.conf
2372 %attr(750,root,root) %dir %{_sysconfdir}/conf.d
2373 %attr(750,root,root) %dir %{_sysconfdir}/vhosts.d
2374 %attr(750,root,root) %dir %{_sysconfdir}/webapps.d
2375 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/apache.conf
2376 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_common.conf
2377 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mpm.conf
2378 %attr(640,root,root) %config(noreplace,missingok) %verify(not md5 mtime size) %{_sysconfdir}/vhosts.d/example.net.conf
2379 %attr(640,root,root) %{_sysconfdir}/magic
2380 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/httpd
2381 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/httpd
2382
2383 %dir %{_libexecdir}
2384
2385 %attr(755,root,root) %{_sbindir}/checkgid
2386 %attr(755,root,root) %{_sbindir}/httpd
2387 %attr(755,root,root) %{_sbindir}/httpd.*
2388
2389 %dir %attr(770,root,http) /var/run/httpd
2390 %dir %attr(770,root,http) /var/cache/httpd
2391
2392 /usr/lib/tmpfiles.d/%{name}.conf
2393 %{systemdunitdir}/httpd-*.service
2394 %config(noreplace) %verify(not md5 mtime size) /etc/systemd/system/httpd.service
2395
2396 %{_mandir}/man8/httpd.8*
2397
2398 %attr(2751,root,logs) %dir /var/log/httpd
2399 %attr(2750,root,logs) %dir /var/log/archive/httpd
2400 %attr(640,root,logs) %ghost /var/log/httpd/*
2401
2402 %dir %{_datadir}
2403
2404 %dir %{_datadir}/cgi-bin
2405 %dir %{_datadir}/html
2406 %dir %{_datadir}/vhosts
2407 # do not adapter here, %{_datadir} != /usr/share here
2408 %{_datadir}/icons
2409
2410 %files doc -f manual.files
2411 %defattr(644,root,root,755)
2412 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_manual.conf
2413
2414 %files errordocs
2415 %defattr(644,root,root,755)
2416 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_errordocs.conf
2417 %{_datadir}/error
2418
2419 %files suexec
2420 %defattr(644,root,root,755)
2421 %attr(4755,root,root) %{_sbindir}/suexec
2422 %attr(755,root,root) %{_sbindir}/suexec.fcgi
2423 %attr(755,root,root) %{_libexecdir}/mod_suexec.so
2424 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_suexec.conf
2425 %{_mandir}/man8/suexec.8*
2426
2427 %files index
2428 %defattr(644,root,root,755)
2429 %config(noreplace,missingok) %{_datadir}/html/index.html*
2430
2431 %files tools
2432 %defattr(644,root,root,755)
2433 %attr(755,root,root) %{_sbindir}/ab
2434 %attr(755,root,root) %{_sbindir}/apachectl
2435 %attr(755,root,root) %{_sbindir}/htdigest
2436 %attr(755,root,root) %{_sbindir}/logresolve
2437 %attr(755,root,root) %{_sbindir}/rotatelogs
2438 %{_mandir}/man8/ab.8*
2439 %{_mandir}/man8/apachectl.8*
2440 %{_mandir}/man1/htdigest.1*
2441 %{_mandir}/man8/logresolve.8*
2442 %{_mandir}/man8/rotatelogs.8*
2443
2444 %files devel
2445 %defattr(644,root,root,755)
2446 %attr(755,root,root) %{_sbindir}/apxs
2447 %attr(755,root,root) %{_sbindir}/envvars*
2448 %dir %{_libexecdir}
2449 %dir %{_libexecdir}/build
2450 %{_libexecdir}/build/[lprs]*.mk
2451 %{_libexecdir}/build/config_vars.mk
2452 %attr(755,root,root) %{_libexecdir}/build/*.sh
2453 %{_includedir}
2454 %{_mandir}/man8/apxs.8*
2455
2456 %files mod_actions
2457 %defattr(644,root,root,755)
2458 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_actions.conf
2459 %attr(755,root,root) %{_libexecdir}/mod_actions.so
2460
2461 %files mod_alias
2462 %defattr(644,root,root,755)
2463 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_alias.conf
2464 %attr(755,root,root) %{_libexecdir}/mod_alias.so
2465
2466 %files mod_asis
2467 %defattr(644,root,root,755)
2468 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_asis.conf
2469 %attr(755,root,root) %{_libexecdir}/mod_asis.so
2470
2471 %files mod_auth
2472 %defattr(644,root,root,755)
2473
2474 %files mod_auth_basic
2475 %defattr(644,root,root,755)
2476 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_auth_basic.conf
2477 %attr(755,root,root) %{_libexecdir}/mod_auth_basic.so
2478
2479 %files mod_auth_dbm
2480 %defattr(644,root,root,755)
2481
2482 %files mod_auth_digest
2483 %defattr(644,root,root,755)
2484 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_auth_digest.conf
2485 %attr(755,root,root) %{_libexecdir}/mod_auth_digest.so
2486
2487 %files mod_authn_alias
2488 %defattr(644,root,root,755)
2489 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authn_alias.conf
2490 %attr(755,root,root) %{_libexecdir}/mod_authn_alias.so
2491
2492 %files mod_authn_anon
2493 %defattr(644,root,root,755)
2494 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authn_anon.conf
2495 %attr(755,root,root) %{_libexecdir}/mod_authn_anon.so
2496
2497 %files mod_authn_dbd
2498 %defattr(644,root,root,755)
2499 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authn_dbd.conf
2500 %attr(755,root,root) %{_libexecdir}/mod_authn_dbd.so
2501
2502 %files mod_authn_dbm
2503 %defattr(644,root,root,755)
2504 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authn_dbm.conf
2505 %attr(755,root,root) %{_libexecdir}/mod_authn_dbm.so
2506
2507 %files mod_authn_default
2508 %defattr(644,root,root,755)
2509 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authn_default.conf
2510 %attr(755,root,root) %{_libexecdir}/mod_authn_default.so
2511
2512 %files mod_authn_file
2513 %defattr(644,root,root,755)
2514 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authn_file.conf
2515 %attr(755,root,root) %{_libexecdir}/mod_authn_file.so
2516
2517 %if %{with ldap}
2518 %files mod_authnz_ldap
2519 %defattr(644,root,root,755)
2520 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authnz_ldap.conf
2521 %attr(755,root,root) %{_libexecdir}/mod_authnz_ldap.so
2522 %endif
2523
2524 %files mod_authz_dbm
2525 %defattr(644,root,root,755)
2526 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authz_dbm.conf
2527 %attr(755,root,root) %{_libexecdir}/mod_authz_dbm.so
2528
2529 %files mod_authz_default
2530 %defattr(644,root,root,755)
2531 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authz_default.conf
2532 %attr(755,root,root) %{_libexecdir}/mod_authz_default.so
2533
2534 %files mod_authz_groupfile
2535 %defattr(644,root,root,755)
2536 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authz_groupfile.conf
2537 %attr(755,root,root) %{_libexecdir}/mod_authz_groupfile.so
2538
2539 %files mod_authz_host
2540 %defattr(644,root,root,755)
2541 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authz_host.conf
2542 %attr(755,root,root) %{_libexecdir}/mod_authz_host.so
2543
2544 %files mod_authz_owner
2545 %defattr(644,root,root,755)
2546 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authz_owner.conf
2547 %attr(755,root,root) %{_libexecdir}/mod_authz_owner.so
2548
2549 %files mod_authz_user
2550 %defattr(644,root,root,755)
2551 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authz_user.conf
2552 %attr(755,root,root) %{_libexecdir}/mod_authz_user.so
2553
2554 %files mod_autoindex
2555 %defattr(644,root,root,755)
2556 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_autoindex.conf
2557 %attr(755,root,root) %{_libexecdir}/mod_autoindex.so
2558
2559 %if %{with bucketeer}
2560 %files mod_bucketeer
2561 %defattr(644,root,root,755)
2562 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_bucketeer.conf
2563 %attr(755,root,root) %{_libexecdir}/mod_bucketeer.so
2564 %endif
2565
2566 %files mod_cache
2567 %defattr(644,root,root,755)
2568 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_cache.conf
2569 %attr(755,root,root) %{_sbindir}/htcacheclean
2570 %attr(755,root,root) %{_libexecdir}/mod_cache.so
2571 %attr(755,root,root) %{_libexecdir}/mod_disk_cache.so
2572 %attr(755,root,root) %{_libexecdir}/mod_mem_cache.so
2573 %{_mandir}/man8/htcacheclean.8*
2574
2575 %files mod_case_filter
2576 %defattr(644,root,root,755)
2577 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_case_filter.conf
2578 %attr(755,root,root) %{_libexecdir}/mod_case_filter.so
2579
2580 %files mod_case_filter_in
2581 %defattr(644,root,root,755)
2582 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_case_filter_in.conf
2583 %attr(755,root,root) %{_libexecdir}/mod_case_filter_in.so
2584
2585 %files mod_cern_meta
2586 %defattr(644,root,root,755)
2587 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_cern_meta.conf
2588 %attr(755,root,root) %{_libexecdir}/mod_cern_meta.so
2589
2590 %files mod_cgi
2591 %defattr(644,root,root,755)
2592 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_cgi.conf
2593 %attr(755,root,root) %{_libexecdir}/mod_cgi.so
2594
2595 %files mod_cgid
2596 %defattr(644,root,root,755)
2597 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_cgid.conf
2598 %attr(755,root,root) %{_libexecdir}/mod_cgid.so
2599
2600 %files mod_charset_lite
2601 %defattr(644,root,root,755)
2602 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_charset_lite.conf
2603 %attr(755,root,root) %{_libexecdir}/mod_charset_lite.so
2604
2605 %files mod_dav
2606 %defattr(644,root,root,755)
2607 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_dav.conf
2608 %attr(755,root,root) %{_libexecdir}/mod_dav*.so
2609 %dir %attr(770,root,http) /var/lock/mod_dav
2610
2611 %files mod_dbd
2612 %defattr(644,root,root,755)
2613 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_dbd.conf
2614 %attr(755,root,root) %{_libexecdir}/mod_dbd.so
2615
2616 %files mod_deflate
2617 %defattr(644,root,root,755)
2618 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_deflate.conf
2619 %attr(755,root,root) %{_libexecdir}/mod_deflate.so
2620
2621 %files mod_dir
2622 %defattr(644,root,root,755)
2623 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_dir.conf
2624 %attr(755,root,root) %{_libexecdir}/mod_dir.so
2625
2626 %files mod_dumpio
2627 %defattr(644,root,root,755)
2628 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_dumpio.conf
2629 %attr(755,root,root) %{_libexecdir}/mod_dumpio.so
2630
2631 %files mod_echo
2632 %defattr(644,root,root,755)
2633 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_echo.conf
2634 %attr(755,root,root) %{_libexecdir}/mod_echo.so
2635
2636 %files mod_env
2637 %defattr(644,root,root,755)
2638 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_env.conf
2639 %attr(755,root,root) %{_libexecdir}/mod_env.so
2640
2641 %files mod_expires
2642 %defattr(644,root,root,755)
2643 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_expires.conf
2644 %attr(755,root,root) %{_libexecdir}/mod_expires.so
2645
2646 %files mod_ext_filter
2647 %defattr(644,root,root,755)
2648 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_ext_filter.conf
2649 %attr(755,root,root) %{_libexecdir}/mod_ext_filter.so
2650
2651 %files mod_file_cache
2652 %defattr(644,root,root,755)
2653 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_file_cache.conf
2654 %attr(755,root,root) %{_libexecdir}/mod_file_cache.so
2655
2656 %files mod_filter
2657 %defattr(644,root,root,755)
2658 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_filter.conf
2659 %attr(755,root,root) %{_libexecdir}/mod_filter.so
2660
2661 %files mod_headers
2662 %defattr(644,root,root,755)
2663 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_headers.conf
2664 %attr(755,root,root) %{_libexecdir}/mod_headers.so
2665
2666 %files mod_ident
2667 %defattr(644,root,root,755)
2668 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_ident.conf
2669 %attr(755,root,root) %{_libexecdir}/mod_ident.so
2670
2671 %files mod_imagemap
2672 %defattr(644,root,root,755)
2673 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_imagemap.conf
2674 %attr(755,root,root) %{_libexecdir}/mod_imagemap.so
2675
2676 %files mod_include
2677 %defattr(644,root,root,755)
2678 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_include.conf
2679 %attr(755,root,root) %{_libexecdir}/mod_include.so
2680
2681 %files mod_info
2682 %defattr(644,root,root,755)
2683 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_info.conf
2684 %attr(755,root,root) %{_libexecdir}/mod_info.so
2685
2686 %if %{with ldap}
2687 %files mod_ldap
2688 %defattr(644,root,root,755)
2689 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_ldap.conf
2690 %attr(755,root,root) %{_libexecdir}/mod_ldap.so
2691 %endif
2692
2693 %files mod_log_config
2694 %defattr(644,root,root,755)
2695 %attr(755,root,root) %{_libexecdir}/mod_log_config.so
2696 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_log_config.conf
2697
2698 %files mod_log_forensic
2699 %defattr(644,root,root,755)
2700 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_log_forensic.conf
2701 %attr(755,root,root) %{_libexecdir}/mod_log_forensic.so
2702
2703 %files mod_logio
2704 %defattr(644,root,root,755)
2705 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_logio.conf
2706 %attr(755,root,root) %{_libexecdir}/mod_logio.so
2707
2708 %files mod_mime
2709 %defattr(644,root,root,755)
2710 %attr(755,root,root) %{_libexecdir}/mod_mime.so
2711 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_mime.conf
2712
2713 %files mod_mime_magic
2714 %defattr(644,root,root,755)
2715 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_mime_magic.conf
2716 %attr(755,root,root) %{_libexecdir}/mod_mime_magic.so
2717
2718 %files mod_negotiation
2719 %defattr(644,root,root,755)
2720 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_negotiation.conf
2721 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_languages.conf
2722 %attr(755,root,root) %{_libexecdir}/mod_negotiation.so
2723
2724 %files mod_proxy
2725 %defattr(644,root,root,755)
2726 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_proxy.conf
2727 %attr(755,root,root) %{_libexecdir}/mod_proxy*.so
2728
2729 %files mod_reqtimeout
2730 %defattr(644,root,root,755)
2731 %attr(755,root,root) %{_libexecdir}/mod_reqtimeout.so
2732 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_reqtimeout.conf
2733
2734 %files mod_rewrite
2735 %defattr(644,root,root,755)
2736 %attr(755,root,root) %{_sbindir}/httxt2dbm
2737 %attr(755,root,root) %{_libexecdir}/mod_rewrite.so
2738 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_rewrite.conf
2739 %{_mandir}/man1/httxt2dbm.1*
2740
2741 %files mod_setenvif
2742 %defattr(644,root,root,755)
2743 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_setenvif.conf
2744 %attr(755,root,root) %{_libexecdir}/mod_setenvif.so
2745
2746 %files mod_speling
2747 %defattr(644,root,root,755)
2748 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_speling.conf
2749 %attr(755,root,root) %{_libexecdir}/mod_speling.so
2750
2751 %if %{with ssl}
2752 %files mod_ssl
2753 %defattr(644,root,root,755)
2754 %attr(750,root,root) %dir %{_sysconfdir}/ssl
2755 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/ssl/server.*
2756 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_ssl.conf
2757 %attr(755,root,root) %{_libexecdir}/mod_ssl.so
2758 %endif
2759
2760 %files mod_status
2761 %defattr(644,root,root,755)
2762 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_status.conf
2763 %attr(755,root,root) %{_libexecdir}/mod_status.so
2764
2765 %files mod_substitute
2766 %defattr(644,root,root,755)
2767 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_substitute.conf
2768 %attr(755,root,root) %{_libexecdir}/mod_substitute.so
2769
2770 %files mod_unique_id
2771 %defattr(644,root,root,755)
2772 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_unique_id.conf
2773 %attr(755,root,root) %{_libexecdir}/mod_unique_id.so
2774
2775 %files mod_userdir
2776 %defattr(644,root,root,755)
2777 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_userdir.conf
2778 %attr(755,root,root) %{_libexecdir}/mod_userdir.so
2779
2780 %files mod_usertrack
2781 %defattr(644,root,root,755)
2782 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_usertrack.conf
2783 %attr(755,root,root) %{_libexecdir}/mod_usertrack.so
2784
2785 %files mod_version
2786 %defattr(644,root,root,755)
2787 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_version.conf
2788 %attr(755,root,root) %{_libexecdir}/mod_version.so
2789
2790 %files mod_vhost_alias
2791 %defattr(644,root,root,755)
2792 %attr(755,root,root) %{_libexecdir}/mod_vhost_alias.so
2793 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_vhost_alias.conf
2794
2795 %files -n htpasswd-%{name}
2796 %defattr(644,root,root,755)
2797 %attr(755,root,root) %{_bindir}/htpasswd
2798 %attr(755,root,root) %{_sbindir}/htpasswd
2799 %{_mandir}/man1/htpasswd.1*
2800
2801 %files dbmtools
2802 %defattr(644,root,root,755)
2803 %attr(755,root,root) %{_sbindir}/dbmmanage
2804 %attr(755,root,root) %{_sbindir}/htdbm
2805 %{_mandir}/man1/dbmmanage.1*
2806 %{_mandir}/man1/htdbm.1*
2807
2808 %files cgi_test
2809 %defattr(644,root,root,755)
2810 %dir %{_cgibindir}
2811 %attr(755,root,root) %{_cgibindir}/*
2812 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_cgi_test.conf
This page took 0.434193 seconds and 3 git commands to generate.