]> git.pld-linux.org Git - packages/apache.git/blob - apache.spec
Fix undefined symbol: ERR_GET_FUNC with openssl 3 and apply patch from
[packages/apache.git] / apache.spec
1 # TODO:
2 # - config examples for mod_*
3 # - --with-suexec-uidmin=500 or =1000 ?
4 # - check those authn modules inner deps
5 # - for external packages: don't use any apache module name in dep as they
6 #   differ for apache 1.3/2.0/2.2!? any better ideas? rpm Suggests: tags?
7 # - for mod_auth_* modules require each auth module to require virtual authn so at least *_core is chosen?
8 # - same for mod_authz
9 # - mod_auth_digest and mod_auth_basic R: apache(authn) ?
10 # - drop mod_case_filter* or find summary and description for them
11 # - FYI: http://wiki.apache.org/httpd/InternalDummyConnection
12 # - consider modules: mod_authnz_fcgi, mod_socache_dc (distcache bcond)
13
14 # Conditional build:
15 %bcond_without  ssl             # build without SSL support
16 %bcond_without  ldap            # build without LDAP support
17 %bcond_with     distcache       # distcache support
18 %bcond_with     bucketeer       # debug one
19 %bcond_without  http2           # HTTP/2 support
20
21 # this is internal macro, don't change to %%apache_modules_api
22 %define         _apache_modules_api 20120211
23
24 %define         openssl_ver     1.1.1
25 %define         apr_ver         1:1.7.0
26 %define         apr_util_ver    1:1.6.1
27
28 Summary:        The most widely used Web server on the Internet
29 Summary(de.UTF-8):      Leading World Wide Web-Server
30 Summary(es.UTF-8):      Servidor HTTPD para proveer servicios WWW
31 Summary(fr.UTF-8):      Le serveur web le plus utilise sur Internet
32 Summary(pl.UTF-8):      Serwer WWW (World Wide Web)
33 Summary(pt_BR.UTF-8):   Servidor HTTPD para prover serviços WWW
34 Summary(ru.UTF-8):      Самый популярный веб-сервер
35 Summary(tr.UTF-8):      Lider WWW tarayıcı
36 Name:           apache
37 Version:        2.4.51
38 Release:        2
39 License:        Apache v2.0
40 Group:          Networking/Daemons/HTTP
41 Source0:        http://www.apache.org/dist/httpd/httpd-%{version}.tar.bz2
42 # Source0-md5:  d2793fc1c8cb8ba355cee877d1f2d46d
43 Source1:        %{name}.init
44 Source2:        %{name}.logrotate
45 Source3:        %{name}.sysconfig
46 Source4:        %{name}-server.crt
47 Source5:        %{name}-server.key
48 Source6:        %{name}-httpd.conf
49 Source7:        %{name}-common.conf
50 Source8:        %{name}-mod_vhost_alias.conf
51 Source9:        %{name}-mod_status.conf
52 Source10:       %{name}-mod_proxy.conf
53 Source11:       %{name}-mod_info.conf
54 Source12:       %{name}-mod_ssl.conf
55 Source13:       %{name}-mod_dav.conf
56 Source14:       %{name}-mod_dir.conf
57 Source15:       %{name}-mod_suexec.conf
58 Source16:       %{name}-mod_deflate.conf
59 Source17:       %{name}-mod_autoindex.conf
60 Source18:       %{name}-multilang-errordoc.conf
61 Source19:       %{name}-manual.conf
62 Source20:       %{name}-mod_userdir.conf
63 Source21:       %{name}-mpm.conf
64 Source22:       %{name}-languages.conf
65 Source23:       %{name}-mod_mime.conf
66 Source24:       %{name}-mod_authz_host.conf
67 Source25:       %{name}-mod_cgid.conf
68 Source26:       %{name}-mod_log_config.conf
69 Source27:       %{name}-mod_mime_magic.conf
70 Source28:       %{name}-mod_cache.conf
71 Source29:       %{name}-example.net.conf
72 Source30:       %{name}.tmpfiles
73 Source31:       %{name}.service
74 Source32:       %{name}-mod_http2.conf
75 Source33:       %{name}-mod_md.conf
76 Patch0:         %{name}-configdir_skip_backups.patch
77 Patch1:         %{name}-layout.patch
78 Patch2:         %{name}-suexec.patch
79 Patch3:         %{name}-branding.patch
80 Patch4:         %{name}-apr.patch
81 Patch7:         %{name}-syslibs.patch
82 Patch8:         bug-65627.patch
83 Patch9:         ssl.patch
84 Patch10:        httpd-2.0.46-dav401dest.patch
85 Patch14:        httpd-2.0.48-corelimit.patch
86 Patch15:        httpd-2.0.48-debuglog.patch
87 Patch18:        %{name}-v6only-ENOPROTOOPT.patch
88 Patch19:        %{name}-conffile-path.patch
89 Patch20:        %{name}-apxs.patch
90 # Relaxed version of suexec. If called as suexec.fcgi don't check uid/gid against file owner.
91 # Required by our patched mod_fcgid to run php as fcgi via suexec.
92 Patch23:        %{name}-suexec_fcgi.patch
93 # http://scripts.mit.edu/trac/browser/trunk/server/common/patches/httpd-2.2.x-mod_ssl-sessioncaching.patch?rev=1348
94 Patch25:        httpd-2.2.x-mod_ssl-sessioncaching.patch
95 Patch26:        %{name}-mod_vhost_alias_docroot.patch
96 Patch29:        libtool-tag.patch
97 URL:            http://httpd.apache.org/
98 BuildRequires:  apr-devel >= %{apr_ver}
99 BuildRequires:  apr-util-devel >= %{apr_util_ver}
100 BuildRequires:  autoconf >= 2.50
101 BuildRequires:  automake
102 %{?with_distcache:BuildRequires:        distcache-devel}
103 BuildRequires:  jansson-devel
104 BuildRequires:  libbrotli-devel >= 0.6.0
105 BuildRequires:  libtool >= 2:1.5
106 BuildRequires:  libxml2-devel >= 2
107 BuildRequires:  lua53-devel >= 5.3
108 %{?with_http2:BuildRequires:    nghttp2-devel >= 1.15.0}
109 %{?with_ldap:BuildRequires:     openldap-devel >= 2.3.0}
110 %{?with_ssl:BuildRequires:      openssl-devel >= %{openssl_ver}}
111 %{?with_ssl:BuildRequires:      openssl-tools >= %{openssl_ver}}
112 BuildRequires:  pcre-devel
113 BuildRequires:  pkgconfig
114 BuildRequires:  rpm >= 4.4.9-56
115 BuildRequires:  rpm-build >= 4.4.0
116 BuildRequires:  rpm-perlprov >= 4.1-13
117 BuildRequires:  rpmbuild(macros) >= 1.647
118 BuildRequires:  sed >= 4.0
119 BuildRequires:  systemd-devel
120 BuildRequires:  zlib-devel
121 Requires:       %{name}-errordocs = %{version}-%{release}
122 Requires:       %{name}-mod_alias = %{version}-%{release}
123 Requires:       %{name}-mod_auth = %{version}-%{release}
124 Requires:       %{name}-mod_autoindex = %{version}-%{release}
125 Requires:       %{name}-mod_deflate = %{version}-%{release}
126 Requires:       %{name}-mod_dir = %{version}-%{release}
127 Requires:       %{name}-mod_env = %{version}-%{release}
128 Requires:       %{name}-mod_filter = %{version}-%{release}
129 Requires:       %{name}-mod_headers = %{version}-%{release}
130 Requires:       %{name}-mod_log_config = %{version}-%{release}
131 Requires:       %{name}-mod_logio = %{version}-%{release}
132 Requires:       %{name}-mod_mime = %{version}-%{release}
133 Requires:       %{name}-mod_mime_magic = %{version}-%{release}
134 Requires:       %{name}-mod_negotiation = %{version}-%{release}
135 Requires:       %{name}-mod_reqtimeout = %{version}-%{release}
136 Requires:       %{name}-mod_rewrite = %{version}-%{release}
137 Requires:       %{name}-mod_setenvif = %{version}-%{release}
138 Requires:       %{name}-mod_speling = %{version}-%{release}
139 Requires:       %{name}-mod_status = %{version}-%{release}
140 Requires:       %{name}-mod_userdir = %{version}-%{release}
141 Requires:       %{name}-mod_version = %{version}-%{release}
142 Requires:       %{name}-tools = %{version}-%{release}
143 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
144
145 %define         _sysconfdir     /etc/httpd
146 %define         _includedir     %{_prefix}/include/apache
147 %define         _datadir        /home/services/httpd
148 %define         _libexecdir     %{_libdir}/apache
149 %define         _cgibindir      %{_prefix}/lib/cgi-bin/%{name}
150
151 %description
152 Apache is a powerful, full-featured, efficient and freely-available
153 Web server. Apache is also the most popular Web server on the
154 Internet.
155
156 %description -l de.UTF-8
157 Apache ist ein voll funktionsfähiger Web-Server, der kostenlos
158 erhältlich und weit verbreitet ist.
159
160 %description -l es.UTF-8
161 El servidor web Apache es el mejor servidor gratuito disponible en el
162 mundo UNIX hoy. Usa HTTP (HyperText Transfer Protocol) para permitir
163 que navegadores vean documentos y sometan datos remotamente. Puede
164 ejecutar varias funciones diferentes, incluyendo funciones de proxy y
165 caché, y nos ofrece características como monitor de estado, conversión
166 dinámica de tipo, y otras más.
167
168 %description -l fr.UTF-8
169 Apache est un serveur Web puissant, efficace, gratuit et complet.
170 Apache est aussi le serveur Web le plus populaire sur Internet.
171
172 %description -l pl.UTF-8
173 Apache jest serwerem WWW (World Wide Web). Instalując ten pakiet
174 będziesz mógł prezentować własne strony WWW w sieci Internet.
175
176 %description -l pt_BR.UTF-8
177 O servidor web Apache é o melhor servidor gratuito disponível no mundo
178 UNIX hoje. Ele usa HTTP (HyperText Transfer Protocol) para permitir
179 que browsers web vejam documentos e submetam dados remotamente. Ele
180 pode executar várias funções diferentes, incluindo funções de proxy e
181 cache, e oferece características como monitor de status, conversão
182 dinâmica de tipo, e mais.
183
184 %description -l ru.UTF-8
185 Apache - мощный, функциональный, высокопроизводительный и свободно
186 распространяемый веб-сервер.
187
188 %description -l tr.UTF-8
189 Apache serbest dağıtılan ve çok kullanılan yetenekli bir web
190 sunucusudur.
191
192 %package base
193 Summary:        The Number One HTTP Server On The Internet
194 Summary(pl.UTF-8):      Wiodący w Internecie serwer HTTP
195 Group:          Networking/Daemons/HTTP
196 Requires(post): fileutils
197 Requires(post,preun):   /sbin/chkconfig
198 Requires(postun):       /usr/sbin/groupdel
199 Requires(postun):       /usr/sbin/userdel
200 Requires(pre):  /bin/id
201 Requires(pre):  /usr/bin/getgid
202 Requires(pre):  /usr/sbin/groupadd
203 Requires(pre):  /usr/sbin/useradd
204 Requires(post,preun,postun):    systemd-units >= 38
205 Requires:       /sbin/chkconfig
206 Requires:       apr >= %{apr_ver}
207 Requires:       apr-util >= %{apr_util_ver}
208 Requires:       psmisc >= 20.1
209 Requires:       rc-scripts >= 0.4.1.23
210 Requires:       sed >= 4.0
211 Requires:       systemd-units >= 38
212 Provides:       apache(modules-api) = %{_apache_modules_api}
213 Provides:       group(http)
214 Provides:       user(http)
215 Provides:       webserver = apache
216 Obsoletes:      apache-extra
217 Obsoletes:      apache6
218 # packaged by mistake. really sample code
219 Obsoletes:      apache-mod_optional_fn_export
220 Obsoletes:      apache-mod_optional_fn_import
221 Obsoletes:      apache-mod_optional_fn_import
222 Obsoletes:      apache-mod_optional_hook_import
223 Conflicts:      apache < 2.2.0
224 # mod_wsgi >= 3.4 is required for apache 2.4
225 Conflicts:      apache-mod_wsgi < 3.4
226 Conflicts:      logrotate < 3.7-4
227 # for the posttrans scriptlet, conflicts because in vserver environment rpm package is not installed.
228 Conflicts:      rpm < 4.4.2-0.2
229
230 %description base
231 Apache is a powerful, full-featured, efficient and freely-available
232 Web server. Apache is also the most popular Web server on the
233 Internet.
234
235 %description base -l pl.UTF-8
236 Apache jest potężnym, w pełni funkcjonalnym, wydajnym i wolnodostępnym
237 serwerem WWW (World Wide Web). Jest także najbardziej popularnym
238 serwerem WWW w Internecie.
239
240 %package suexec
241 Summary:        Apache suexec wrapper
242 Summary(pl.UTF-8):      Wrapper suexec do serwera WWW Apache
243 Group:          Networking/Daemons/HTTP
244 URL:            http://httpd.apache.org/docs/2.4/suexec.html
245 Requires:       %{name}-base = %{version}-%{release}
246
247 %description suexec
248 The suEXEC feature provides Apache users the ability to run CGI and
249 SSI programs under user IDs different from the user ID of the calling
250 web-server. Normally, when a CGI or SSI program executes, it runs as
251 the same user who is running the web server.
252
253 %description suexec -l pl.UTF-8
254 SuEXEC umożliwia serwerowi Apache uruchamianie programów CGI i SSI z
255 innym UID niż wywołujący je serwer. Normalnie programy CGI i SSI są
256 wykonywane jako taki sam użytkownik jak serwer WWW.
257
258 %package tools
259 Summary:        Apache tools
260 Summary(pl.UTF-8):      Narzędzia Apache'a
261 Group:          Development/Tools
262
263 %description tools
264 Apache tools.
265
266 %description tools -l pl.UTF-8
267 Narzędzia Apache'a.
268
269 %package index
270 Summary:        Apache index.html* files
271 Summary(pl.UTF-8):      Pliki Apache index.html*
272 Group:          Documentation
273 Requires:       %{name}-base = %{version}-%{release}
274 Obsoletes:      indexhtml
275 BuildArch:      noarch
276
277 %description index
278 Apache index.html* files.
279
280 %description index -l pl.UTF-8
281 Pliki index.html* Apache'a.
282
283 %package doc
284 Summary:        Apache manual
285 Summary(pl.UTF-8):      Podręcznik Apache'a
286 Group:          Documentation
287 Requires:       %{name}-base = %{version}-%{release}
288 Requires:       %{name}-mod_alias = %{version}-%{release}
289 Requires:       %{name}-mod_dir = %{version}-%{release}
290 Requires:       %{name}-mod_negotiation = %{version}-%{release}
291 Requires:       %{name}-mod_setenvif = %{version}-%{release}
292 BuildArch:      noarch
293
294 %description doc
295 Apache manual.
296
297 %description doc -l pl.UTF-8
298 Podręcznik Apache'a.
299
300 %package errordocs
301 Summary:        Multi-language error messages for Apache
302 Summary(pl.UTF-8):      Wielojęzyczne komunikaty błędów dla Apache'a
303 Group:          Applications/WWW
304 URL:            http://httpd.apache.org/docs-project/
305 Requires:       %{name}-base = %{version}-%{release}
306 Requires:       %{name}-mod_alias = %{version}-%{release}
307 Requires:       %{name}-mod_authz_host = %{version}-%{release}
308 Requires:       %{name}-mod_include = %{version}-%{release}
309 Requires:       %{name}-mod_negotiation = %{version}-%{release}
310 BuildArch:      noarch
311
312 %description errordocs
313 Multi-language error messages.
314
315 %description errordocs -l pl.UTF-8
316 Dokumenty opisujące błędy HTTP dla Apache'a w wielu językach.
317
318 %package devel
319 Summary:        Module development tools for the Apache web server
320 Summary(es.UTF-8):      Archivos de inclusión del Apache para desarrollo de módulos
321 Summary(fr.UTF-8):      Les outils de developpement de modules pour le serveur web Apache
322 Summary(pl.UTF-8):      Pliki nagłówkowe do tworzenia modułów rozszerzeń do serwera WWW Apache
323 Summary(pt_BR.UTF-8):   Arquivos de inclusão do Apache para desenvolvimento de módulos
324 Summary(ru.UTF-8):      Средства разработки модулей для веб-сервера Apache
325 Group:          Networking/Utilities
326 Requires:       apr-util-devel >= %{apr_util_ver}
327 Requires:       libtool
328 Obsoletes:      apache-apxs
329 Obsoletes:      apache-static
330
331 %description devel
332 The apache-devel package contains header files for Apache.
333
334 %description devel -l es.UTF-8
335 Este paquete contiene los archivos de inclusión para el Apache, bien
336 como el utilitario apxs para la construcción de objetos compartidos
337 dinámicos (DSOs). Ha ce falta instalar este paquete si deseas compilar
338 o desarrollar módulos adicionales para Apache.
339
340 %description devel -l fr.UTF-8
341 Le package apache-devel contient le code source pour le serveur Web
342 Apache et le binaire APXS dont vous aurez besoin pour construire des
343 Objets Dynamiques Partages (DSOs) pour Apache.
344
345 %description devel -l pl.UTF-8
346 Pliki nagłówkowe i inne zasoby niezbędne przy budowaniu modułów DSO
347 (Dynamic Shared Objects) dla Apache'a.
348
349 %description devel -l ru.UTF-8
350 Средства разработки модулей для веб-сервера Apache.
351
352 %description devel -l pt_BR.UTF-8
353 Este pacote contem os arquivos de inclusão para o Apache, bem como o
354 utilitário apxs para a construção de objetos compartilhados dinâmicos
355 (DSOs). Este pacote precisa ser instalado se você deseja compilar ou
356 desenvolver módulos adicionais para o Apache.
357
358 %package mod_access_compat
359 Summary:        Group authorizations based on host (name or IP address)
360 Summary(pl.UTF-8):      Grupowe uwierzytelnianie w oparciu o hosta (nazwę lub adres IP)
361 Group:          Networking/Daemons/HTTP
362 URL:            http://httpd.apache.org/docs/2.4/mod/mod_access_compat.html
363 Requires:       %{name}-base = %{version}-%{release}
364 Provides:       apache(mod_access_compat) = %{version}-%{release}
365
366 %description mod_access_compat
367 The directives provided by mod_access_compat are used in <Directory>,
368 <Files>, and <Location> sections as well as .htaccess files to control
369 access to particular parts of the server. Access can be controlled
370 based on the client hostname, IP address, or other characteristics of
371 the client request, as captured in environment variables. The Allow
372 and Deny directives are used to specify which clients are or are not
373 allowed access to the server, while the Order directive sets the
374 default access state, and configures how the Allow and Deny directives
375 interact with each other.
376
377 %description mod_access_compat -l pl.UTF-8
378 Dyrektywy udostępniane przez mod_access_compat są używane w sekcjach
379 <Directory>, <Files> i <Location>, a także plikach .htaccess do
380 sterowania odstępem do poszczególnych części serwera. Dostęp można
381 kontrolować w oparciu o nazwę hosta klienta, adres IP lub inne cechy
382 żądania klienta, przechwytywane w zmiennych środowiskowych. Dyrektywy
383 Allow i Deny służą do określania, którzy klienci mają, a którzy nie
384 mają dostępu do serwera, natomiast dyrektywa Order ustawia domyślny
385 stan dostępu i konfiguruje sposób interakcji między dyrektywami Allow
386 oraz Deny.
387
388 %package mod_actions
389 Summary:        Apache module for executing CGI scripts based on media type or request method
390 Summary(pl.UTF-8):      Moduł Apache'a do uruchamiania skryptów CGI w oparciu o rodzaj danych lub żądania
391 Group:          Networking/Daemons/HTTP
392 URL:            http://httpd.apache.org/docs/2.4/mod/mod_actions.html
393 Requires:       %{name}-base = %{version}-%{release}
394 Provides:       apache(mod_actions) = %{version}-%{release}
395
396 %description mod_actions
397 This module has two directives. The Action directive lets you run CGI
398 scripts whenever a file of a certain MIME content type is requested.
399 The Script directive lets you run CGI scripts whenever a particular
400 method is used in a request. This makes it much easier to execute
401 scripts that process files.
402
403 %description mod_actions -l pl.UTF-8
404 Ten moduł ma dwie dyrektywy. Dyrektywa Action pozwala uruchamiać
405 skrypty CGI przy żądaniu pliku o danym typie zawartości MIME.
406 Dyrektywa Script pozwala uruchamiać skrypty CGI przy danej metodzie
407 żądania. Znacznie ułatwia to wykonywanie skryptów przetwarzających
408 pliki.
409
410 %package mod_alias
411 Summary:        Mapping different parts of the host filesystem in the document tree and for URL redirection
412 Summary(pl.UTF-8):      Odwzorowywanie różnych części systemu plików w drzewie dokumentów i przekierowywanie URL-i
413 Group:          Networking/Daemons/HTTP
414 URL:            http://httpd.apache.org/docs/2.4/mod/mod_alias.html
415 Requires:       %{name}-base = %{version}-%{release}
416 Provides:       apache(mod_alias) = %{version}-%{release}
417 Provides:       webserver(alias)
418
419 %description mod_alias
420 The directives contained in this module allow for manipulation and
421 control of URLs as requests arrive at the server. The Alias and
422 ScriptAlias directives are used to map between URLs and filesystem
423 paths. This allows for content which is not directly under the
424 DocumentRoot served as part of the web document tree. The ScriptAlias
425 directive has the additional effect of marking the target directory as
426 containing only CGI scripts.
427
428 The Redirect directives are used to instruct clients to make a new
429 request with a different URL. They are often used when a resource has
430 moved to a new location.
431
432 mod_alias is designed to handle simple URL manipulation tasks. For
433 more complicated tasks such as manipulating the query string, use the
434 tools provided by mod_rewrite.
435
436 %description mod_alias -l pl.UTF-8
437 Dyrektywy zawarte w tym module umożliwiają manipulacje i sterowanie
438 URL-ami kiedy żądania są dostarczane do serwera. Dyrektywy Alias i
439 ScriptAlias są używane do odwzorowywania między URL-ami i ścieżkami w
440 systemie plików. Umożliwia to serwowanie treści nie będącej
441 bezpośrednio wewnątrz DocumentRoota jako część drzewa dokumentów WWW.
442 Dyrektywa ScriptAlias ma dodatkowy efekt oznaczania katalogu
443 docelowego jako zawierającego wyłącznie skrypty CGI.
444
445 Dyrektywy Redirect służą do instruowania klientów, aby wykonali nowe
446 żądanie z innym URL-em. Są używane zwykle w przypadku, gdy zasoby
447 zostały przeniesione w inne miejsce.
448
449 mod_alias został zaprojektowany do obsługi prostych manipulacji na
450 URL-ach. Bardziej skomplikowane zadania, takie jak modyfikowanie
451 łańcucha zapytania można wykonać przy użyciu mod_rewrite.
452
453 %package mod_allowmethods
454 Summary:        Easily restrict what HTTP methods can be used on the server
455 Summary(pl.UTF-8):      Łatwe ograniczanie metod HTTP dostępnych na serwerze
456 Group:          Networking/Daemons/HTTP
457 URL:            http://httpd.apache.org/docs/2.4/mod/mod_allowmethods.html
458 Requires:       %{name}-base = %{version}-%{release}
459 Provides:       apache(mod_allowmethods) = %{version}-%{release}
460
461 %description mod_allowmethods
462 This module makes it easy to restrict what HTTP methods can used on an
463 server.
464
465 %description mod_allowmethods -l pl.UTF-8
466 Ten moduł ułatwia ograniczanie metod HTTP udostępnianych przez serwer.
467
468 %package mod_asis
469 Summary:        Sends files that contain their own HTTP headers
470 Summary(pl.UTF-8):      Wysyłanie plików zawierających własne nagłówki HTTP
471 Group:          Networking/Daemons/HTTP
472 URL:            http://httpd.apache.org/docs/2.4/mod/mod_asis.html
473 Requires:       %{name}-base = %{version}-%{release}
474 Provides:       apache(mod_asis) = %{version}-%{release}
475
476 %description mod_asis
477 This module provides the handler send-as-is which causes Apache to
478 send the document without adding most of the usual HTTP headers.
479
480 This can be used to send any kind of data from the server, including
481 redirects and other special HTTP responses, without requiring a
482 cgi-script or an nph script.
483
484 For historical reasons, this module will also process any file with
485 the mime type httpd/send-as-is.
486
487 %description mod_asis -l pl.UTF-8
488 Ten moduł udostępnia procesurę obsługi send-as-is powodującą, że
489 Apache wysyła dokument bez dodawania większości zwykle używanych
490 nagłówków HTTP.
491
492 Może to być używane do wysyłania dowolnego rodzaju danych z serwera,
493 włącznie z przekierowaniami i innymi specjalnymi odpowiedziami HTTP
494 bez wymagania skryptu CGI lub nph.
495
496 %package mod_auth
497 Summary:        Virtual package which provides backward compatibility with Apache 2.0
498 Summary(pl.UTF-8):      Pakiet wirtualny zapewniający kompatybilność wsteczną z Apachem 2.0
499 Group:          Networking/Daemons/HTTP
500 Requires:       %{name}-base = %{version}-%{release}
501 Requires:       %{name}-mod_auth_basic = %{version}-%{release}
502 Requires:       %{name}-mod_authn_file = %{version}-%{release}
503 Requires:       %{name}-mod_authz_groupfile = %{version}-%{release}
504 Requires:       %{name}-mod_authz_user = %{version}-%{release}
505 Provides:       apache(mod_auth) = %{version}-%{release}
506 Provides:       webserver(auth)
507
508 %description mod_auth
509 Virtual package which requires apache-mod_authn_file,
510 apache-mod_authz_user and apache-mod_authz_groupfile for backward
511 compatibility with Apache 2.0.
512
513 %description mod_auth -l pl.UTF-8
514 Pakiet wirtualny wymagający apache-mod_authn_file,
515 apache-mod_authz_user i apache-mod_authz_groupfile dla kompatybilności
516 wstecznej z Apachem 2.0.
517
518 %package mod_auth_basic
519 Summary:        Apache module that allows Basic authentication
520 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający korzystawnie z uwierzytelnienia Basic
521 Group:          Networking/Daemons/HTTP
522 URL:            http://httpd.apache.org/docs/2.4/mod/mod_auth_basic.html
523 Requires:       %{name}-base = %{version}-%{release}
524 Provides:       apache(mod_auth_basic) = %{version}-%{release}
525
526 %description mod_auth_basic
527 This module allows the use of HTTP Basic Authentication to restrict
528 access by looking up users in the given providers.
529
530 HTTP Digest Authentication is provided by mod_auth_digest. This module
531 should usually be combined with at least one authentication module
532 such as mod_authn_file and one authorization module such as
533 mod_authz_user.
534
535 %description mod_auth_basic -l pl.UTF-8
536 Ten moduł pozwala używać uwierzytelnienia HTTP Basic do ograniczania
537 dostępu poprzez wyszukiwanie użytkowników we wskazanych miejscach.
538
539 Uwierzytelnianie HTTP Digest jest udostępniane przez moduł
540 mod_auth_digest. Niniejszy moduł jest zwykle używany w połączeniu z
541 przynajmniej jednym modułem uwierzytelniającym, takim jak
542 mod_authn_file oraz jednym modułem autoryzacyjnym, takim jak
543 mod_authz_user.
544
545 %package mod_auth_dbm
546 Summary:        Virtual package which provides backward compatibility with Apache 2.0
547 Summary(pl.UTF-8):      Pakiet wirtualny zapewniający kompatybilność wsteczną z Apachem 2.0
548 Group:          Networking/Daemons/HTTP
549 Requires:       %{name}-base = %{version}-%{release}
550 Requires:       %{name}-dbmtools = %{version}-%{release}
551 Requires:       %{name}-mod_authn_dbm = %{version}-%{release}
552 Requires:       %{name}-mod_authz_dbm = %{version}-%{release}
553 Provides:       apache(mod_auth_dbm) = %{version}-%{release}
554
555 %description mod_auth_dbm
556 Virtual package which requires apache-mod_authn_dbm and
557 apache-mod_authz_dbm for backward compatibility with Apache 2.0.
558
559 %description mod_auth_dbm -l pl.UTF-8
560 Pakiet wirtualny wymagający apache-mod_authn_dbm i
561 apache-mod_authz_dbm dla kompatybilności wstecznej z Apachem 2.0.
562
563 %package mod_auth_digest
564 Summary:        User authentication using MD5 Digest Authentication
565 Summary(pl.UTF-8):      Uwierzytelnianie użytkowników przy użyciu MD5 Digest
566 Group:          Networking/Daemons/HTTP
567 URL:            http://httpd.apache.org/docs/2.4/mod/mod_auth_digest.html
568 Requires:       %{name}-base = %{version}-%{release}
569 Provides:       apache(mod_auth_digest) = %{version}-%{release}
570
571 %description mod_auth_digest
572 This module implements HTTP Digest Authentication.
573
574 %description mod_auth_digest -l pl.UTF-8
575 Ten moduł implementuje uwierzytelnienie HTTP Digest.
576
577 %package mod_auth_form
578 Summary:        Form authentication
579 Summary(pl.UTF-8):      Uwierzytelnianie poprzez formularz
580 Group:          Networking/Daemons/HTTP
581 URL:            http://httpd.apache.org/docs/2.4/mod/mod_auth_form.html
582 Requires:       %{name}-base = %{version}-%{release}
583 Provides:       apache(mod_auth_form) = %{version}-%{release}
584
585 %description mod_auth_form
586 This module allows the use of an HTML login form to restrict access by
587 looking up users in the given providers. HTML forms require
588 significantly more configuration than the alternatives, however an
589 HTML login form can provide a much friendlier experience for end
590 users.
591
592 %description mod_auth_form -l pl.UTF-8
593 Ten moduł pozwala na wykorzystywanie HTML-owego formularza logowania
594 do ograniczania dostępu poprzez wyszukiwanie użytkowników we
595 wskazanych miejscach. Formularze HTML wymagają znacząco większych
596 nakładów na konfigurację niż alternatywne sposoby, ale mogą być
597 bardziej przyjazne dla użytkowników końcowych.
598
599 %package mod_authn_anon
600 Summary:        Apache module that allows "anonymous" user access to authenticated areas
601 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający dostęp anonimowych użytkowników do stref uwierzytelnianych
602 Group:          Networking/Daemons/HTTP
603 URL:            http://httpd.apache.org/docs/2.4/mod/mod_authn_anon.html
604 Requires:       %{name}-base = %{version}-%{release}
605 Requires:       %{name}-mod_authn_core = %{version}-%{release}
606 Provides:       apache(mod_authn_anon) = %{version}-%{release}
607 # compat
608 Provides:       apache(mod_auth_anon) = %{version}-%{release}
609 Provides:       apache-mod_auth_anon = %{version}-%{release}
610 Obsoletes:      apache-mod_auth_anon < 2.2.0-0.5
611
612 %description mod_authn_anon
613 This module provides authentication front-ends such as mod_auth_basic
614 to authenticate users similar to anonymous-ftp sites, i.e. have a
615 'magic' user id 'anonymous' and the email address as a password. These
616 email addresses can be logged.
617
618 %description mod_authn_anon -l pl.UTF-8
619 Ten moduł udmożliwia frontendom uwierzytelniającym takim jak
620 mod_auth_basic uwierzytelnianie użytkowników podobnie do serwisów
621 anonimowego ftp, tzn. przez udostępnianie "magicznego" identyfikatora
622 "anonymous" i adresu pocztowego jako hasła. Te adresy pocztowe mogą
623 być logowane.
624
625 %package mod_authn_core
626 Summary:        Apache module that provides core authentication capabilieties
627 Summary(pl.UTF-8):      Moduł Apache'a udostępniający podstawowe funkcje uwierzytelniające
628 Group:          Networking/Daemons/HTTP
629 URL:            http://httpd.apache.org/docs/2.4/mod/mod_authn_core.html
630 Requires:       %{name}-base = %{version}-%{release}
631 Provides:       apache(mod_authn_core) = %{version}-%{release}
632 Provides:       apache(mod_authn_default) = %{version}-%{release}
633 Obsoletes:      apache-mod_authn_default < %{version}-%{release}
634
635 %description mod_authn_core
636 This module provides core authentication capabilities to allow or deny
637 access to portions of the web site. mod_authn_core provides directives
638 that are common to all authentication providers.
639
640 %description mod_authn_core -l pl.UTF-8
641 Ten moduł dostarcza podstawowe funkcje uwierzytelniania, umożliwiające
642 lub blokujące dostęp do części serwisu WWW. mod_authn_core udostępnia
643 dyrektywy wspólne dla wszystkich modułów obsługujących
644 uwierzytelnianie.
645
646 %package mod_authn_dbd
647 Summary:        Apache module that allows user authentication using an SQL
648 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający uwierzytelnianie użytkowników przy użyciu tabel SQL
649 Group:          Networking/Daemons/HTTP
650 URL:            http://httpd.apache.org/docs/2.4/mod/mod_authn_dbd.html
651 Requires:       %{name}-base = %{version}-%{release}
652 Requires:       %{name}-mod_authn_core = %{version}-%{release}
653 Requires:       %{name}-mod_dbd = %{version}-%{release}
654 Provides:       apache(mod_authn_dbd) = %{version}-%{release}
655
656 %description mod_authn_dbd
657 This module provides authentication front-ends such as mod_auth_digest
658 and mod_auth_basic to authenticate users by looking up users in SQL
659 tables.
660
661 %description mod_authn_dbd -l pl.UTF-8
662 Ten moduł udostępnia frontendom uwierzytelniającym takim jak
663 mod_auth_digest i mod_auth_basic uwierzytelnianie użytkowników poprzez
664 wyszukiwanie w tabelach SQL.
665
666 %package mod_authn_dbm
667 Summary:        Apache module that allows user authentication using DBM files
668 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający uwierzytelnianie użytkowników przy użyciu plików DBM
669 Group:          Networking/Daemons/HTTP
670 URL:            http://httpd.apache.org/docs/2.4/mod/mod_authn_dbm.html
671 Requires:       %{name}-base = %{version}-%{release}
672 Requires:       %{name}-mod_authn_core = %{version}-%{release}
673 Provides:       apache(mod_authn_dbm) = %{version}-%{release}
674
675 %description mod_authn_dbm
676 This module provides authentication front-ends such as mod_auth_digest
677 and mod_auth_basic to authenticate users by looking up users in DBM
678 password files.
679
680 %description mod_authn_dbm -l pl.UTF-8
681 Ten moduł udostępnia frontendom uwierzytelniającym takim jak
682 mod_auth_digest i mod_auth_basic uwierzytelnianie użytkowników poprzez
683 wyszukiwanie w tabelach haseł DBM.
684
685 %package mod_authn_file
686 Summary:        Apache module that allows user authentication using text files
687 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający uwierzytelnianie użytkowników poprzez pliki tekstowe
688 Group:          Networking/Daemons/HTTP
689 URL:            http://httpd.apache.org/docs/2.4/mod/mod_authn_file.html
690 Requires:       %{name}-base = %{version}-%{release}
691 Requires:       %{name}-mod_authn_core = %{version}-%{release}
692 Provides:       apache(mod_authn_file) = %{version}-%{release}
693
694 %description mod_authn_file
695 This module provides authentication front-ends such as mod_auth_digest
696 and mod_auth_basic to authenticate users by looking up users in plain
697 text password files.
698
699 %description mod_authn_file -l pl.UTF-8
700 Ten moduł udostępnia frontendom uwierzytelniającym takim jak
701 mod_auth_digest i mod_auth_basic uwierzytelnianie użytkowników poprzez
702 wyszukiwanie w plikach tekstowych z hasłami.
703
704 %package mod_authn_socache
705 Summary:        Manages a cache of authentication credentials to relieve the load on backends
706 Summary(pl.UTF-8):      Zarządzanie pamięcią podręczną uwierzytelniania w celu odciążenia backendów
707 Group:          Networking/Daemons/HTTP
708 URL:            http://httpd.apache.org/docs/2.4/mod/mod_authn_socache.html
709 Requires:       %{name}-base = %{version}-%{release}
710 Requires:       %{name}-mod_authn_core = %{version}-%{release}
711 Provides:       apache(mod_authn_socache) = %{version}-%{release}
712
713 %description mod_authn_socache
714 This module maintains a cache of authentication credentials, so that a
715 new backend lookup is not required for every authenticated request.
716
717 %description mod_authn_socache -l pl.UTF-8
718 Ten moduł utrzymuje pamięć podręczną danych uwierzytelniających,
719 dzięki czemu nie przy każdym żądaniu uwierzytelniania wymagane jest
720 nowe wyszukiwanie po stronie backendu.
721
722 %package mod_authnz_ldap
723 Summary:        Apache module that allows an LDAP directory to be used to store the database for HTTP Basic authentication
724 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający przechowywanie danych dla uwierzytelnienia HTTP Basic w bazie LDAP
725 Group:          Networking/Daemons/HTTP
726 URL:            http://httpd.apache.org/docs/2.4/mod/mod_authnz_ldap.html
727 Requires:       %{name}-base = %{version}-%{release}
728 Requires:       %{name}-mod_authn_core = %{version}-%{release}
729 Requires:       %{name}-mod_ldap = %{version}-%{release}
730 Requires:       apr-util-ldap >= %{apr_util_ver}
731 Provides:       apache(mod_authnz_ldap) = %{version}-%{release}
732 # compat
733 Provides:       apache(mod_auth_ldap) = %{version}-%{release}
734 Provides:       apache-mod_auth_ldap = %{version}-%{release}
735 Obsoletes:      apache-mod_auth_ldap < 2.2.0-0.5
736
737 %description mod_authnz_ldap
738 This module provides authentication front-ends such as mod_auth_basic
739 to authenticate users through an LDAP directory.
740
741 %description mod_authnz_ldap -l pl.UTF-8
742 Ten moduł udostępnia frontendom uwierzytelniającym takim jak
743 mod_auth_basic uwierzytelnianie użytkowników poprzez katalog LDAP.
744
745 %package mod_authz_core
746 Summary:        Apache module that provides core authorization capabilities
747 Summary(pl.UTF-8):      Moduł Apache'a udostępniający podstawowe funkcje autoryzujące
748 Group:          Networking/Daemons/HTTP
749 URL:            http://httpd.apache.org/docs/2.4/mod/mod_authz_core.html
750 Requires:       %{name}-base = %{version}-%{release}
751 Provides:       apache(mod_authz_core) = %{version}-%{release}
752 Provides:       apache(mod_authz_default) = %{version}-%{release}
753 Obsoletes:      apache-mod_authz_default < %{version}-%{release}
754
755 %description mod_authz_core
756 This module provides core authorization capabilities so that
757 authenticated users can be allowed or denied access to portions of the
758 web site. mod_authz_core provides the functionality to register
759 various authorization providers. It is usually used in conjunction
760 with an authentication provider module such as mod_authn_file and an
761 authorization module such as mod_authz_user. It also allows for
762 advanced logic to be applied to the authorization processing.
763
764 %description mod_authz_core -l pl.UTF-8
765 Ten moduł dostarcza podstawowe funkcje autoryzacji, umożliwiające lub
766 blokujące dostęp do części serwisu WWW uwierzytelnionym użytkownikom.
767 mod_authz_core udostępnia funkcje do rejestrowania różnych modułów
768 autoryzujących. Zwykle jest używany w połączeniu z modułem
769 zapewniającym uwierzytelnianie, takim jak mod_authn_file oraz modułem
770 autoryzującym, takim jak mod_authz_user. Umożliwia także użycie
771 zaawansowanej logiki w czasie procesu autoryzacji.
772
773 %package mod_authz_dbd
774 Summary:        Group Authorization and Login using SQL
775 Summary(pl.UTF-8):      Grupowa autoryzacja i logowanie przy użyciu SQL
776 Group:          Networking/Daemons/HTTP
777 URL:            http://httpd.apache.org/docs/2.4/mod/mod_authz_dbd.html
778 Requires:       %{name}-base = %{version}-%{release}
779 Requires:       %{name}-mod_authz_core = %{version}-%{release}
780 Requires:       %{name}-mod_dbd = %{version}-%{release}
781 Provides:       apache(mod_authz_dbd) = %{version}-%{release}
782
783 %description mod_authz_dbd
784 This module provides authorization capabilities so that authenticated
785 users can be allowed or denied access to portions of the web site by
786 group membership. Similar functionality is provided by
787 mod_authz_groupfile and mod_authz_dbm, with the exception that this
788 module queries a SQL database to determine whether a user is a member
789 of a group.
790
791 This module can also provide database-backed user login/logout
792 capabilities. These are likely to be of most value when used in
793 conjunction with mod_authn_dbd.
794
795 This module relies on mod_dbd to specify the backend database driver
796 and connection parameters, and manage the database connections.
797
798 %description mod_authz_dbd -l pl.UTF-8
799 Ten moduł udostępnia funkcje autoryzujące pozwalające lub blokujące
800 dostęp do części serwisu WWW uwierzytelnionym użytkownikom na
801 podstawie ich przynależności do grup. Podobne funkcje udostępniają
802 moduły mod_authz_groupfile oraz mod_authz_dbm, z tą różnicą, że
803 niniejszy moduł odpytuje bazę SQL w celu stwierdzenia przynależności
804 do grupy.
805
806 Ten moduł może także zapewniać funkcje do logowania/wylogowywania
807 użytkowników w oparciu o bazę danych. Jest to przydatne najbardziej w
808 połączeniu z mod_authn_dbd.
809
810 Ten moduł polega na mod_dbd w celu określenia sterownika bazy danych i
811 parametrów połączenia oraz zarządzania połączeniami z bazą.
812
813 %package mod_authz_dbm
814 Summary:        Apache module that allows group authorization using DBM files
815 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający uwierzytelnianie grup z użyciem plików DBM
816 Group:          Networking/Daemons/HTTP
817 URL:            http://httpd.apache.org/docs/2.4/mod/mod_authz_dbm.html
818 Requires:       %{name}-base = %{version}-%{release}
819 Requires:       %{name}-mod_authz_core = %{version}-%{release}
820 Provides:       apache(mod_authz_dbm) = %{version}-%{release}
821
822 %description mod_authz_dbm
823 This module provides authorization capabilities so that authenticated
824 users can be allowed or denied access to portions of the web site by
825 group membership stored in DBM file.
826
827 %description mod_authz_dbm -l pl.UTF-8
828 Ten moduł daje możliwość udostępniania bądź blokowania części serwisu
829 WWW dla uwierzytelnionych użytkowników na podstawie ich przynależności
830 do grupy zapisywanej w pliku DBM.
831
832 %package mod_authz_groupfile
833 Summary:        Apache module that allows group authorization using plaintext files
834 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający autoryzację grup przy użyciu plików tekstowych
835 Group:          Networking/Daemons/HTTP
836 URL:            http://httpd.apache.org/docs/2.4/mod/mod_authz_groupfile.html
837 Requires:       %{name}-base = %{version}-%{release}
838 Requires:       %{name}-mod_authz_core = %{version}-%{release}
839 Provides:       apache(mod_authz_groupfile) = %{version}-%{release}
840
841 %description mod_authz_groupfile
842 This module provides authorization capabilities so that authenticated
843 users can be allowed or denied access to portions of the web site by
844 group membership stored in plain text file.
845
846 %description mod_authz_groupfile -l pl.UTF-8
847 Ten moduł daje możliwość udostępniania bądź blokowania części serwisu
848 WWW dla uwierzytelnionych użytkowników na podstawie ich przynależności
849 do grupy zapisywanej w pliku tekstowym.
850
851 %package mod_authz_host
852 Summary:        Apache module that allows group authorizations based on host (name or IP address)
853 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający autoryzację grup w oparcu o host (nazwę lub IP)
854 Group:          Networking/Daemons/HTTP
855 URL:            http://httpd.apache.org/docs/2.4/mod/mod_authz_host.html
856 Requires:       %{name}-base = %{version}-%{release}
857 Requires:       %{name}-mod_authz_core = %{version}-%{release}
858 Provides:       apache(mod_authz_host) = %{version}-%{release}
859 # for apache < 2.2.0
860 Provides:       apache(mod_access) = %{version}-%{release}
861 Provides:       webserver(access)
862
863 %description mod_authz_host
864 The directives provided by mod_authz_host are used in <Directory>,
865 <Files>, and <Location> sections as well as .htaccess files to control
866 access to particular parts of the server. Access can be controlled
867 based on the client hostname, IP address, or other characteristics of
868 the client request, as captured in environment variables.
869
870 %description mod_authz_host -l pl.UTF-8
871 Dyrektyw udostępnianych przez mod_authz_host można używać w sekcjach
872 <Directory>, <Files> i <Location>, a także plikach .htaccess w celu
873 sterowania dostępem do poszczególnych części serwera. Dostępem można
874 sterować na podstawie nazwy hosta klienta, adresu IP lub innej
875 charakterystyki żądania klienta dostępnej w zmiennych środowiskowych.
876
877 %package mod_authz_owner
878 Summary:        Apache module that allows authorization based on file ownership
879 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający autoryzacje w oparciu o własność plików
880 Group:          Networking/Daemons/HTTP
881 URL:            http://httpd.apache.org/docs/2.4/en/mod/mod_authz_owner.html
882 Requires:       %{name}-base = %{version}-%{release}
883 Requires:       %{name}-mod_authz_core = %{version}-%{release}
884 #Requires:      any-auth-module
885 Provides:       apache(mod_authz_owner) = %{version}-%{release}
886
887 %description mod_authz_owner
888 This module authorizes access to files by comparing the userid used
889 for HTTP authentication (the web userid) with the file-system owner or
890 group of the requested file. The supplied username and password must
891 be already properly verified by an authentication module, such as
892 mod_auth_basic or mod_auth_digest.
893
894 %description mod_authz_owner -l pl.UTF-8
895 Ten moduł autoryzuje dostęp do plików poprzez porównanie
896 identyfikatora użytkownika użytego przy uwierzytelnianiu HTTP (web
897 userid) z właścicielem lub grupą żądanego pliku w systemie plików.
898 Podana nazwa użytkownika i hasło muszą być wcześniej zweryfikowane
899 przez moduł uwierzytelniania, taki jak mod_auth_basic lub
900 mod_auth_digest.
901
902 %package mod_authz_user
903 Summary:        Apache module that allows user authorization
904 Summary(pl.UTF-8):      Moduł Apache'a umożliwiający autoryzację użytkowników
905 Group:          Networking/Daemons/HTTP
906 URL:            http://httpd.apache.org/docs/2.4/en/mod/mod_authz_user.html
907 Requires:       %{name}-base = %{version}-%{release}
908 Requires:       %{name}-mod_authz_core = %{version}-%{release}
909 Provides:       apache(mod_authz_user) = %{version}-%{release}
910
911 %description mod_authz_user
912 This module provides authorization capabilities so that authenticated
913 users can be allowed or denied access to portions of the web site.
914
915 %description mod_authz_user -l pl.UTF-8
916 Ten moduł daje możliwość udostępniania bądź blokowania części serwisu
917 WWW dla uwierzytelnionych użytkowników.
918
919 %package mod_autoindex
920 Summary:        Apache module - display index of files
921 Summary(pl.UTF-8):      Moduł Apache'a do wyświetlania indeksu plików
922 Group:          Networking/Daemons/HTTP
923 URL:            http://httpd.apache.org/docs/2.4/en/mod/mod_autoindex.html
924 Requires:       %{name}-base = %{version}-%{release}
925 Requires:       %{name}-mod_alias = %{version}-%{release}
926 Provides:       apache(mod_autoindex) = %{version}-%{release}
927
928 %description mod_autoindex
929 This package contains mod_autoindex module. It provides generation
930 index of files.
931
932 %description mod_autoindex -l pl.UTF-8
933 Ten pakiet dostarcza moduł autoindex, który generuje indeks plików.
934
935 %package mod_brotli
936 Summary:        Apache module: compress content via Brotli before it is delivered to the client
937 Summary(pl.UTF-8):      Moduł Apache'a kompresujący treść przy użyciu formatu Brotli przed wysłaniem do klienta
938 Group:          Networking/Daemons/HTTP
939 URL:            http://httpd.apache.org/docs/2.4/mod/mod_brotli.html
940 Requires:       %{name}-base = %{version}-%{release}
941 Requires:       libbrotli >= 0.6.0
942 Provides:       apache(mod_brotli) = %{version}-%{release}
943
944 %description mod_brotli
945 The mod_brotli module provides the BROTLI_COMPRESS output filter that
946 allows output from your server to be compressed using the brotli
947 compression format before being sent to the client over the network.
948
949 %description mod_brotli -l pl.UTF-8
950 Moduł mod_brotli udostępnia filtr wyjściowy BROTLI_COMPRESS,
951 pozwalający na kompresowanie wyjścia z serwera przy użyciu formatu
952 kompresji brotli przed wysłaniem przez sieć do klienta.
953
954 %package mod_bucketeer
955 Summary:        Buckets manipulation filter
956 Summary(pl.UTF-8):      Dzielenie kubełków po znalezieniu znaku sterującego
957 Group:          Networking/Daemons/HTTP
958 Requires:       %{name}-base = %{version}-%{release}
959 Provides:       apache(mod_bucketeer) = %{version}-%{release}
960
961 %description mod_bucketeer
962 Split buckets whenever we find a control-char.
963
964 %description mod_bucketeer -l pl.UTF-8
965 Dzielenie kubełków po znalezieniu znaku sterującego.
966
967 %package mod_buffer
968 Summary:        Support for request buffering
969 Summary(pl.UTF-8):      Obsługa buforowania żądań
970 Group:          Networking/Daemons/HTTP
971 URL:            http://httpd.apache.org/docs/2.4/mod/mod_buffer.html
972 Requires:       %{name}-base = %{version}-%{release}
973 Provides:       apache(mod_buffer) = %{version}-%{release}
974
975 %description mod_buffer
976 This module provides the ability to buffer the input and output filter
977 stacks.
978
979 Under certain circumstances, content generators might create content
980 in small chunks. In order to promote memory reuse, in memory chunks
981 are always 8k in size, regardless of the size of the chunk itself.
982 When many small chunks are generated by a request, this can create a
983 large memory footprint while the request is being processed, and an
984 unnecessarily large amount of data on the wire. The addition of a
985 buffer collapses the response into the fewest chunks possible.
986
987 When httpd is used in front of an expensive content generator,
988 buffering the response may allow the backend to complete processing
989 and release resources sooner, depending on how the backend is
990 designed.
991
992 %description mod_buffer -l pl.UTF-8
993 Ten moduł daje możliwość buforowania wejścia i wyjścia stosów filtrów.
994
995 W niektórych warunkach generatory treści mogą wytwarzać treść w
996 niewielkich porcjach. W celu ułatwienia ponownego używania pamięci,
997 porcje w pamięci mają zawsze 8k niezależnoe od rozmiaru samych porcji.
998 Kiedy żądanie wygeneruje wiele małych porcji, może to spowodować duży
999 narzut pamięciowy podczas przetwarzania żądania. Dodanie bufora łączy
1000 odpowiedzi w jak najmniejszą liczbę porcji.
1001
1002 W przypadku używania httpd do prezentacji treści z kosztownego
1003 generatora, buforowanie odpowiedzi może pozwolić backendowi dokończyć
1004 przetwarzanie i wcześniej zwolnić zasoby (w zależności od sposobu
1005 zaprojektowania backendu).
1006
1007 %package mod_cache
1008 Summary:        Content cache keyed to URIs
1009 Summary(pl.UTF-8):      Pamięć podręczna wg klucza URI
1010 Group:          Networking/Daemons/HTTP
1011 URL:            http://httpd.apache.org/docs/2.4/en/mod/mod_cache.html
1012 Requires:       %{name}-base = %{version}-%{release}
1013 Provides:       apache(mod_cache) = %{version}-%{release}
1014
1015 %description mod_cache
1016 mod_cache implements an RFC 2616 compliant HTTP content cache that can
1017 be used to cache either local or proxied content. Two storage
1018 management modules are included in the base Apache distribution:
1019 mod_disk_cache implements a disk based storage manager (generally used
1020 for proxy caching) and mod_mem_cache implements an in-memory based
1021 storage manager (primarily useful for caching local content).
1022
1023 %description mod_cache -l pl.UTF-8
1024 Implementacja zgodnej z RFC 2616 pamięci podręcznej, która może być
1025 używana do zapamiętywania zawartości lokalnej lub dostępnej przez
1026 proxy. Dołączono dwa moduły pozwalające magazynować dane w pamięci
1027 (głównie użyteczne przy cache'owaniu lokalnej zawartości) oraz na
1028 dysku (używane do cache'owania proxy).
1029
1030 %package mod_case_filter
1031 Summary:        Apache output filter that converts all output to upper case
1032 Summary(pl.UTF-8):      Filtr wyjściowy Apache'a zamieniający wszystkie litery na wielkie
1033 Group:          Networking/Daemons/HTTP
1034 Requires:       %{name}-base = %{version}-%{release}
1035 Provides:       apache(mod_case_filter) = %{version}-%{release}
1036
1037 %description mod_case_filter
1038 Apache output filter that converts all output to upper case.
1039
1040 %description mod_case_filter -l pl.UTF-8
1041 Filtr wyjściowy Apache'a zamieniający wszystkie litery w wyjściu na
1042 wielkie.
1043
1044 %package mod_case_filter_in
1045 Summary:        Apache input filter that converts all request body to upper case
1046 Summary(pl.UTF-8):      Filtr wejściowy Apache'a zamieniający wszystkie litery w żądaniu na wielkie
1047 Group:          Networking/Daemons/HTTP
1048 Requires:       %{name}-base = %{version}-%{release}
1049 Provides:       apache(mod_case_filter_in) = %{version}-%{release}
1050
1051 %description mod_case_filter_in
1052 Apache input filter that converts all request body (not headers) to
1053 upper case.
1054
1055 %description mod_case_filter_in -l pl.UTF-8
1056 Filtr wejściowy Apache'a zamieniający wszystkie litery w ciele żądania
1057 (ale nie nagłówkach) na wielkie.
1058
1059 %package mod_cern_meta
1060 Summary:        CERN httpd metafile semantics
1061 Summary(pl.UTF-8):      Obsługa semantyki metaplików CERN httpd
1062 Group:          Networking/Daemons/HTTP
1063 URL:            http://httpd.apache.org/docs/2.4/en/mod/mod_cern_meta.html
1064 Requires:       %{name}-base = %{version}-%{release}
1065 Provides:       apache(mod_cern_meta) = %{version}-%{release}
1066
1067 %description mod_cern_meta
1068 Emulate the CERN HTTPD Meta file semantics. Meta files are HTTP
1069 headers that can be output in addition to the normal range of headers
1070 for each file accessed. They appear rather like the Apache .asis
1071 files, and are able to provide a crude way of influencing the Expires:
1072 header, as well as providing other curiosities. There are many ways to
1073 manage meta information, this one was chosen because there is already
1074 a large number of CERN users who can exploit this module.
1075
1076 %description mod_cern_meta -l pl.UTF-8
1077 Moduł emulujący semantykę metaplików CERN HTTPD. Metapliki to nagłówki
1078 HTTP, które mogą być wysyłane oprócz normalnego zestawu nagłówków dla
1079 każdego przetwarzanego pliku. Zachowują się bardziej jak pliki .asis
1080 Apache'a i mogą dawać brutalny sposób wpływania na nagłówek Expires:,
1081 a także dostarczać inne ciekawostki. Jest wiele sposobów zarządzania
1082 metainformacjami, ta została wybrana ponieważ istnieje już wielu
1083 użytkowników CERN wykorzystujących ten moduł.
1084
1085 %package mod_cgi
1086 Summary:        Execution of CGI scripts
1087 Summary(pl.UTF-8):      Uruchamianie skryptów CGI
1088 Group:          Networking/Daemons/HTTP
1089 URL:            http://httpd.apache.org/docs/2.4/en/mod/mod_cgi.html
1090 Requires:       %{name}-base = %{version}-%{release}
1091 Requires:       %{name}-mod_alias = %{version}-%{release}
1092 Suggests:       %{name}-suexec = %{version}-%{release}
1093 Provides:       apache(mod_cgi) = %{version}-%{release}
1094 Provides:       webserver(cgi)
1095
1096 %description mod_cgi
1097 Any file that has the mime type application/x-httpd-cgi or handler
1098 cgi-script (Apache 1.1 or later) will be treated as a CGI script, and
1099 run by the server, with its output being returned to the client. Files
1100 acquire this type either by having a name containing an extension
1101 defined by the AddType directive, or by being in a ScriptAlias
1102 directory.
1103
1104 When using a multi-threaded MPM under unix, the module mod_cgid should
1105 be used in place of this module. At the user level, the two modules
1106 are essentially identical.
1107
1108 %description mod_cgi -l pl.UTF-8
1109 Ten moduł powoduje, że dowolny plik o typie MIME
1110 application/x-httpd-cgi albo procedurze obsługi cgi-script (w Apache'u
1111 1.1 lub nowszym) będzie traktowany jako skrypt CGI i uruchamiany przez
1112 serwer, a jego wyjście będzie zwracane klientowi. Pliki uzyskują ten
1113 typ przez posiadanie nazwy zawierającej rozszerzenie określone
1114 dyrektywą AddType lub będąc w katalogu ScriptAlias.
1115
1116 Przy używaniu wielowątkowych MPM pod uniksem zamiast tego modułu
1117 należy używać modułu mod_cgid. Z poziomu użytkownika oba te moduły
1118 zachowują się identycznie.
1119
1120 %package mod_cgid
1121 Summary:        Execution of CGI scripts using an external CGI daemon
1122 Summary(pl.UTF-8):      Uruchamianie zewnętrznych skryptów CGI za pomocą daemona CGI
1123 Group:          Networking/Daemons/HTTP
1124 URL:            http://httpd.apache.org/docs/2.4/en/mod/mod_cgid.html
1125 Requires:       %{name}-base = %{version}-%{release}
1126 Requires:       %{name}-mod_alias = %{version}-%{release}
1127 Provides:       apache(mod_cgid) = %{version}-%{release}
1128 Provides:       webserver(cgi)
1129
1130 %description mod_cgid
1131 Execution of CGI scripts using an external CGI daemon.
1132
1133 Except for the optimizations and the additional ScriptSock directive,
1134 mod_cgid behaves similarly to mod_cgi.
1135
1136 This module should be used instead of mod_cgi whenever a
1137 multi-threaded MPM is selected.
1138
1139 %description mod_cgid -l pl.UTF-8
1140 Uruchamianie skryptów CGI za pomocą zewnętrznego demona CGI.
1141
1142 Z wyjątkiem optymalizacji i dodatkowej dyrektywy ScriptSock, mod_cgid
1143 zachowuje się podobnie do mod_cgi.
1144
1145 Tego modułu należy używać zamiast mod_cgi zawsze, jeśli wybrano
1146 wielowątkowy MPM.
1147
1148 %package mod_charset_lite
1149 Summary:        Specify character set translation or recoding
1150 Summary(pl.UTF-8):      Translacja lub przekodowywanie znaków
1151 Group:          Networking/Daemons/HTTP
1152 URL:            http://httpd.apache.org/docs/2.4/en/mod/mod_charset_lite.html
1153 Requires:       %{name}-base = %{version}-%{release}
1154 Provides:       apache(mod_charset_lite) = %{version}-%{release}
1155
1156 %description mod_charset_lite
1157 Specify character set translation or recoding.
1158
1159 This module provides a small subset of configuration mechanisms
1160 implemented by Russian Apache and its associated mod_charset.
1161
1162 %description mod_charset_lite -l pl.UTF-8
1163 Translacja lub przekodowywanie znaków.
1164
1165 Ten moduł udostępnia niewielki podzbiór mechanizmów konfiguracyjnych
1166 zaimplementowanych przez Russian Apache i powiązany z nim mod_charset.
1167
1168 %package mod_data
1169 Summary:        Convert response body into an RFC2397 data URL
1170 Summary(pl.UTF-8):      Konwersja ciała odpowiedzi do URL-a danych RFC2397
1171 Group:          Networking/Daemons/HTTP
1172 URL:            http://httpd.apache.org/docs/2.4/mod/mod_data.html
1173 Requires:       %{name}-base = %{version}-%{release}
1174 Provides:       apache(mod_data) = %{version}-%{release}
1175
1176 %description mod_data
1177 This module provides the ability to convert a response into an RFC2397
1178 data URL.
1179
1180 Data URLs can be embedded inline within web pages using something like
1181 the mod_include module, to remove the need for clients to make
1182 separate connections to fetch what may potentially be many small
1183 images. Data URLs may also be included into pages generated by
1184 scripting languages such as PHP.
1185
1186 %description mod_data -l pl.UTF-8
1187 Ten moduł daje możliwość konwersji odpowiedzi do URL-a danych RFC2397.
1188
1189 URL-e danych można osadzać wewnątrz stron WWW środkami takimi jak
1190 moduł mod_include, dzięki czemu klienci nie muszą tworzyć osobnych
1191 połączeń w celu pobrania wielu małych obrazków. URL-e danych można
1192 włączać także do stron generowanych przez języki skryptowe, takie jak
1193 PHP.
1194
1195 %package mod_dav
1196 Summary:        Apache module - Distributed Authoring and Versioning
1197 Summary(pl.UTF-8):      Moduł Apache'a - rozproszone autorstwo i wersjonowanie
1198 Group:          Networking/Daemons/HTTP
1199 URL:            http://httpd.apache.org/docs/2.4/en/mod/mod_dav.html
1200 Requires:       %{name}-base = %{version}-%{release}
1201 Requires:       apr-util-dbm-db >= %{apr_util_ver}
1202 Provides:       apache(mod_dav) = %{version}-%{release}
1203
1204 %description mod_dav
1205 This module provides class 1 and class 2 WebDAV ('Web-based
1206 Distributed Authoring and Versioning') functionality for Apache. This
1207 extension to the HTTP protocol allows creating, moving, copying, and
1208 deleting resources and collections on a remote web server.
1209
1210 %description mod_dav -l pl.UTF-8
1211 Moduł udostępnia klasę 1 oraz klasę 2 WebDAV (Bazującego na WWW
1212 rozproszonego autorstwa i wersjonowania). To rozszerzenie HTTP pozwala
1213 na tworzenie, przesuwanie, kopiowanie oraz kasowanie zasobów na
1214 zdalnym serwerze WWW.
1215
1216 %package mod_dbd
1217 Summary:        Manages SQL database connections
1218 Summary(pl.UTF-8):      Zarządzanie połączeniami z bazą danych SQL
1219 Group:          Networking/Daemons/HTTP
1220 URL:            http://httpd.apache.org/docs/2.4/en/mod/mod_dbd.html
1221 Requires:       %{name}-base = %{version}-%{release}
1222 Provides:       apache(mod_dbd) = %{version}-%{release}
1223
1224 %description mod_dbd
1225 mod_dbd manages SQL database connections using apr_dbd. It provides
1226 database connections on request to modules requiring SQL database
1227 functions, and takes care of managing databases with optimal
1228 efficiency and scalability for both threaded and non-threaded MPMs.
1229
1230 %description mod_dbd -l pl.UTF-8
1231 mod_dbd zarządza połączeniami z bazą danych SQL przy użyciu apr_dbd.
1232 Udostępnia połączenia z bazą danych na żądanie modułów wymagających
1233 funkcji bazy danych SQL, a następnie dba o zarządzanie bazami danych z
1234 optymalną wydajnością i skalowalnością zarówno dla wątkowych jak i
1235 niewątkowych MPM.
1236
1237 %package mod_deflate
1238 Summary:        Apache module: Compress content before it is delivered to the client
1239 Summary(pl.UTF-8):      Moduł Apache'a kompresujący dane przed przesłaniem ich do klienta
1240 Group:          Networking/Daemons/HTTP
1241 URL:            http://httpd.apache.org/docs/2.4/mod/mod_deflate.html
1242 Requires:       %{name}-base = %{version}-%{release}
1243 Requires:       %{name}-mod_filter = %{version}-%{release}
1244 Requires:       %{name}-mod_headers = %{version}-%{release}
1245 Provides:       apache(mod_deflate) = %{version}-%{release}
1246
1247 %description mod_deflate
1248 Compress content before it is delivered to the client.
1249
1250 %description mod_deflate -l pl.UTF-8
1251 Moduł kompresujący dane przed przesłaniem ich do klienta.
1252
1253 %package mod_dialup
1254 Summary:        Send static content at a bandwidth rate limit, defined by the various old modem standards
1255 Summary(pl.UTF-8):      Wysyłanie statycznej treści z ograniczeniem przepustowości
1256 Group:          Networking/Daemons/HTTP
1257 URL:            http://httpd.apache.org/docs/2.4/mod/mod_dialup.html
1258 Requires:       %{name}-base = %{version}-%{release}
1259 Provides:       apache(mod_dialup) = %{version}-%{release}
1260
1261 %description mod_dialup
1262 It is a module that sends static content at a bandwidth rate limit,
1263 defined by the various old modem standards. So, you can browse your
1264 site with a 56k V.92 modem.
1265
1266 %description mod_dialup -l pl.UTF-8
1267 Ten moduł wysyła statyczną treść z ograniczoną przepustowością,
1268 zgodnie ze stardardami różnych starych modemów. Można więc przeglądać
1269 stronę tak, jakby robiło się to przez modem 56k V.92.
1270
1271 %package mod_dir
1272 Summary:        Apache module for "trailing slash" redirects and serving directory index files
1273 Summary(pl.UTF-8):      Moduł Apache'a oferujący przekierowania i udostępnianie informacji o zawartości katalogu
1274 Group:          Networking/Daemons/HTTP
1275 URL:            http://httpd.apache.org/docs/2.4/mod/mod_dir.html
1276 Requires:       %{name}-base = %{version}-%{release}
1277 Provides:       apache(mod_dir) = %{version}-%{release}
1278 Provides:       webserver(indexfile)
1279
1280 %description mod_dir
1281 This package contains mod_dir which provides "trailing slash"
1282 redirects and serving directory index files.
1283
1284 %description mod_dir -l pl.UTF-8
1285 Moduł oferujący przekierowania i udostępnianie informacji o zawartości
1286 katalogu.
1287
1288 %package mod_dumpio
1289 Summary:        Dumps all I/O to error log as desired
1290 Summary(pl.UTF-8):      Zrzucanie całości wejścia/wyjścia do logu błędów
1291 Group:          Networking/Daemons/HTTP
1292 URL:            http://httpd.apache.org/docs/2.4/mod/mod_dumpio.html
1293 Requires:       %{name}-base = %{version}-%{release}
1294 Provides:       apache(mod_dumpio) = %{version}-%{release}
1295
1296 %description mod_dumpio
1297 mod_dumpio allows for the logging of all input received by Apache
1298 and/or all output sent by Apache to be logged (dumped) to the
1299 error.log file.
1300
1301 The data logging is done right after SSL decoding (for input) and
1302 right before SSL encoding (for output). As can be expected, this can
1303 produce extreme volumes of data, and should only be used when
1304 debugging problems.
1305
1306 %description mod_dumpio -l pl.UTF-8
1307 mod_dumpio umożliwia logowanie całego wejścia otrzymanego przez
1308 Apache'a i/lub całęgo wyjścia wysyłanego przez Apache'a do pliku
1309 error.log.
1310
1311 Logowanie danych następuja zaraz po zdekodowaniu SSL (dla wejścia) i
1312 zaraz przed kodowaniem SSL (dla wyjścia). Jak można się spodziewać, ta
1313 opcja może tworzyć ogromne ilości danych i powinna być używana tylko
1314 przy diagnostyce problemów.
1315
1316 %package mod_echo
1317 Summary:        A simple echo server to illustrate protocol modules
1318 Summary(pl.UTF-8):      Prosty serwer ocho ilustrujący moduły protokołów
1319 Group:          Networking/Daemons/HTTP
1320 URL:            http://httpd.apache.org/docs/2.4/mod/mod_echo.html
1321 Requires:       %{name}-base = %{version}-%{release}
1322 Provides:       apache(mod_echo) = %{version}-%{release}
1323
1324 %description mod_echo
1325 This module provides an example protocol module to illustrate the
1326 concept. It provides a simple echo server. Telnet to it and type
1327 stuff, and it will echo it.
1328
1329 %description mod_echo -l pl.UTF-8
1330 Ten moduł udostępnia przykładowy moduł protokołu ilustrujący ideę.
1331 Udostępnia prosty serwer echo. Można się na niego zatelnetować i
1332 napisać cokolwiek, a on odpowie tym samym.
1333
1334 %package mod_env
1335 Summary:        Modifies the environment which is passed to CGI scripts and SSI pages
1336 Summary(pl.UTF-8):      Modyfikowanie środowiska przekazywanego skryptom CGI i stronom SSI
1337 Group:          Networking/Daemons/HTTP
1338 URL:            http://httpd.apache.org/docs/2.4/mod/mod_env.html
1339 Requires:       %{name}-base = %{version}-%{release}
1340 Provides:       apache(mod_env) = %{version}-%{release}
1341 Provides:       webserver(setenv)
1342
1343 %description mod_env
1344 This module allows for control of the environment that will be
1345 provided to CGI scripts and SSI pages. Environment variables may be
1346 passed from the shell which invoked the httpd process. Alternatively,
1347 environment variables may be set or unset within the configuration
1348 process.
1349
1350 %description mod_env -l pl.UTF-8
1351 Ten moduł pozwala na kontrolę środowiska udostępnianego skryptom CGI i
1352 stronom SSI. Zmienne środowiskowe mogą być przekazywane z powłoki w
1353 czasie uruchamiania procesu httpd, albo - alternatywnie - ustawiane i
1354 usuwane w procesie konfiguracji.
1355
1356 %package mod_expires
1357 Summary:        Apache module which generates Expires HTTP headers
1358 Summary(pl.UTF-8):      Moduł Apache'a generujący nagłówki HTTP Expires
1359 Group:          Networking/Daemons/HTTP
1360 URL:            http://httpd.apache.org/docs/2.4/mod/mod_expires.html
1361 Requires:       %{name}-base = %{version}-%{release}
1362 Provides:       apache(mod_expires) = %{version}-%{release}
1363 Provides:       webserver(expires)
1364
1365 %description mod_expires
1366 This module controls the setting of the Expires HTTP header in server
1367 responses. The expiration date can set to be relative to either the
1368 time the source file was last modified, or to the time of the client
1369 access.
1370
1371 %description mod_expires -l pl.UTF-8
1372 Moduł kontroluje ustawianie nagłówka HTTP Expires. Data wygaśnięcia
1373 ważności może być ustalana w zależności od czasu modyfikacji plików
1374 źródłowych lub odwołania klienta.
1375
1376 %package mod_ext_filter
1377 Summary:        Pass the response body through an external program before delivery to the client
1378 Summary(pl.UTF-8):      Przekazywanie ciała odpowiedzi do zewnętrznego programu przed przekazaniem klientowi
1379 Group:          Networking/Daemons/HTTP
1380 URL:            http://httpd.apache.org/docs/2.4/mod/mod_ext_filter.html
1381 Requires:       %{name}-base = %{version}-%{release}
1382 Provides:       apache(mod_ext_filter) = %{version}-%{release}
1383
1384 %description mod_ext_filter
1385 mod_ext_filter presents a simple and familiar programming model for
1386 filters. With this module, a program which reads from stdin and writes
1387 to stdout (i.e., a Unix-style filter command) can be a filter for
1388 Apache.
1389
1390 This filtering mechanism is much slower than using a filter which is
1391 specially written for the Apache API and runs inside of the Apache
1392 server process, but it does have the following benefits:
1393 - the programming model is much simpler
1394 - any programming/scripting language can be used, provided that it
1395   allows the program to read from standard input and write to standard
1396   output
1397 - existing programs can be used unmodified as Apache filters
1398
1399 Even when the performance characteristics are not suitable for
1400 production use, mod_ext_filter can be used as a prototype environment
1401 for filters.
1402
1403 %description mod_ext_filter -l pl.UTF-8
1404 mod_ext_filter przedstawia prosty i przyjazny model programowania dla
1405 filtrów. Przy użyciu tego modułu program czytający ze standardowego
1406 wejścia i piszący na standardowe wyjście (czyli uniksowe polecenie
1407 filtrujące) może być filtrem dla Apache'a.
1408
1409 Ten mechanizm filtrujący jest znacznie wolniejszy niż użycie filtru
1410 napisanego specjalnie dla API Apache'a i działającego wewnątrz procesu
1411 Apache'a, ale ma następujące zalety:
1412 - znacznie prostszy model programowania
1413 - możliwość użycia dowolnego języka programowania/skryptowego, jeśli
1414   tylko umożliwia czytanie ze standardowego wejścia i pisanie na
1415   standardowe wyjście
1416 - możliwość użycia istniejących programów bez modyfikacji jako filtrów
1417   Apache'a.
1418
1419 Nawet kiedy charakterystyka wydajności nie jest odpowiednia dla użytku
1420 produkcyjnego, mod_ext_filter można używać w środowisku prototypowym
1421 dla filtrów.
1422
1423 %package mod_file_cache
1424 Summary:        Apache module: caches a static list of files in memory
1425 Summary(pl.UTF-8):      Moduł Apache'a cache'ujący statyczną listę plików w pamięci
1426 Group:          Networking/Daemons/HTTP
1427 URL:            http://httpd.apache.org/docs/2.4/mod/mod_file_cache.html
1428 Requires:       %{name}-base = %{version}-%{release}
1429 Provides:       apache(mod_file_cache) = %{version}-%{release}
1430 Obsoletes:      apache-mmap_static
1431
1432 %description mod_file_cache
1433 Caches a static list of files in memory.
1434
1435 This module is an extension of and borrows heavily from the
1436 mod_mmap_static module in Apache 1.3.
1437
1438 %description mod_file_cache -l pl.UTF-8
1439 Moduł cache'ujący statyczną listę plików w pamięci.
1440
1441 %package mod_filter
1442 Summary:        Context-sensitive smart filter configuration module
1443 Summary(pl.UTF-8):      Moduł inteligentnej, zależnej od kontekstu konfiguracji filtrów
1444 Group:          Networking/Daemons/HTTP
1445 URL:            http://httpd.apache.org/docs/2.4/mod/mod_filter.html
1446 Requires:       %{name}-base = %{version}-%{release}
1447 Provides:       apache(mod_filter) = %{version}-%{release}
1448
1449 %description mod_filter
1450 This module enables smart, context-sensitive configuration of output
1451 content filters. For example, apache can be configured to process
1452 different content-types through different filters, even when the
1453 content-type is not known in advance (e.g. in a proxy).
1454
1455 %description mod_filter -l pl.UTF-8
1456 Ten moduł umożliwia inteligentne, zależne od kontekstu konfigurowanie
1457 wyjściowych filtrów treści. Na przykład, Apache'a można skonfigurować
1458 do przetwarzania różnych content-type poprzez różne filtry, nawet
1459 jeśli content-type nie jest znany z góry (np. w wypadku proxy).
1460
1461 %package mod_headers
1462 Summary:        Apache module allows for the customization of HTTP response headers
1463 Summary(pl.UTF-8):      Moduł Apache'a pozwalający na modyfikację nagłówków HTTP
1464 Group:          Networking/Daemons/HTTP
1465 URL:            http://httpd.apache.org/docs/2.4/mod/mod_headers.html
1466 Requires:       %{name}-base = %{version}-%{release}
1467 Provides:       apache(mod_headers) = %{version}-%{release}
1468 Provides:       webserver(headers)
1469
1470 %description mod_headers
1471 This package contains mod_headers module. The module allows for the
1472 customization of HTTP response headers. Headers can be merged,
1473 replaced or removed.
1474
1475 %description mod_headers -l pl.UTF-8
1476 Moduł pozwalający na łączenie, usuwanie oraz zamianę nagłówków HTTP
1477 wysyłanych do przeglądarki.
1478
1479 %package mod_heartbeat
1480 Summary:        Sends messages with server status to frontend proxy
1481 Summary(pl.UTF-8):      Wysyłanie wiadomości o stanie serwera do proxy frontendowego
1482 Group:          Networking/Daemons/HTTP
1483 URL:            http://httpd.apache.org/docs/2.4/mod/mod_heartbeat.html
1484 Requires:       %{name}-base = %{version}-%{release}
1485 Requires:       %{name}-mod_status = %{version}-%{release}
1486 Requires:       %{name}-mod_watchdog = %{version}-%{release}
1487 Provides:       apache(mod_heartbeat) = %{version}-%{release}
1488
1489 %description mod_heartbeat
1490 mod_heartbeat sends multicast messages to a mod_heartmonitor listener
1491 that advertises the servers current connection count. Usually,
1492 mod_heartmonitor will be running on a proxy server with
1493 mod_lbmethod_heartbeat loaded, which allows ProxyPass to use the
1494 "heartbeat" lbmethod inside of ProxyPass.
1495
1496 mod_heartbeat itself is loaded on the origin server(s) that serve
1497 requests through the proxy server(s).
1498
1499 %description mod_heartbeat -l pl.UTF-8
1500 mod_heartbeat wysyła wiadomości multicast do modułu nasłuchującego
1501 mod_heartmonitor, rozgłaszającego bieżącą liczbę połączeń z serwerami.
1502 Zwykle mod_heartmonitor działa na serwerze proxy z wczytanym modułem
1503 mod_lbmethod_hartbeat, co pozwala na wykorzystanie metody rozkładania
1504 ruchu "heartbeat" wewnątrz ProxyPass.
1505
1506 %package mod_heartmonitor
1507 Summary:        Centralized monitor for mod_heartbeat origin servers
1508 Summary(pl.UTF-8):      Scentralizowany monitor dla serwerów z mod_heartbeat
1509 Group:          Networking/Daemons/HTTP
1510 URL:            http://httpd.apache.org/docs/2.4/mod/mod_heartmonitor.html
1511 Requires:       %{name}-base = %{version}-%{release}
1512 Requires:       %{name}-mod_status = %{version}-%{release}
1513 Requires:       %{name}-mod_watchdog = %{version}-%{release}
1514 Provides:       apache(mod_heartmonitor) = %{version}-%{release}
1515
1516 %description mod_heartmonitor
1517 mod_heartmonitor listens for server status messages generated by
1518 mod_heartbeat enabled origin servers and makes their status available
1519 to mod_lbmethod_heartbeat. This allows ProxyPass to use the
1520 "heartbeat" lbmethod inside of ProxyPass.
1521
1522 This module uses the services of mod_slotmem_shm when available
1523 instead of flat-file storage. No configuration is required to use
1524 mod_slotmem_shm.
1525
1526 %description mod_heartmonitor -l pl.UTF-8
1527 mod_heartmonitor nasłuchuje wiadomości o stanie serwera, generowanych
1528 przez serwery z mod_heartbeat i udostępnia ich stan dla modułu
1529 mod_lbmethod_heartbeat. Pozwala to na wykorzystywanie metody
1530 rozkładania ruchu "heartbeat" wewnątrz ProxyPass.
1531
1532 Ten moduł wykorzystuje usługi modułu mod_slotmem_shm (jeśli jest
1533 dostępny) zamiast przechowywania danych w płaskich plikach. Do
1534 używania tego modułu nie jest wymagana żadna konfiguracja.
1535
1536 %package mod_http2
1537 Summary:        Provide HTTP/2 support for the Apache HTTP Server
1538 Summary(pl.UTF-8):      Obsługa HTTP/2 dla serwera HTTP Apache
1539 Group:          Networking/Daemons/HTTP
1540 URL:            http://httpd.apache.org/docs/2.4/mod/mod_http2.html
1541 Requires:       %{name}-base = %{version}-%{release}
1542 Requires:       nghttp2-libs >= 1.15.0
1543 Provides:       apache(mod_http2) = %{version}-%{release}
1544
1545 %description mod_http2
1546 This module provides HTTP/2 (RFC 7540) support for the Apache HTTP
1547 Server.
1548
1549 %description mod_http2 -l pl.UTF-8
1550 Ten moduł zapewnia obsługę HTTP/2 (RFC 7540) dla serwera HTTP Apache.
1551
1552 %package mod_ident
1553 Summary:        RFC 1413 ident lookups
1554 Summary(pl.UTF-8):      Sprawdzanie identyfikacji RFC 1413
1555 Group:          Networking/Daemons/HTTP
1556 URL:            http://httpd.apache.org/docs/2.4/mod/mod_ident.html
1557 Requires:       %{name}-base = %{version}-%{release}
1558 Provides:       apache(mod_ident) = %{version}-%{release}
1559
1560 %description mod_ident
1561 This module queries an RFC 1413 compatible daemon on a remote host to
1562 look up the owner of a connection.
1563
1564 %description mod_ident -l pl.UTF-8
1565 Ten moduł odpytuje demona zgodnego z RFC 1413 na zdalnym hoście w celu
1566 sprawdzenia właściciela połączenia.
1567
1568 %package mod_imagemap
1569 Summary:        Server-side imagemap processing
1570 Summary(pl.UTF-8):      Przetwarzanie map obrazów po stronie serwera
1571 Group:          Networking/Daemons/HTTP
1572 URL:            http://httpd.apache.org/docs/2.4/mod/mod_imagemap.html
1573 Requires:       %{name}-base = %{version}-%{release}
1574 Provides:       apache(mod_imagemap) = %{version}-%{release}
1575 Provides:       apache-mod_imap
1576 Obsoletes:      apache-mod_imap
1577
1578 %description mod_imagemap
1579 This module processes .map files, thereby replacing the functionality
1580 of the imagemap CGI program. Any directory or document type configured
1581 to use the handler imap-file (using either AddHandler or SetHandler)
1582 will be processed by this module.
1583
1584 %description mod_imagemap -l pl.UTF-8
1585 Ten moduł przetwarza pliki .map zastępując funkcjonalność programu CGI
1586 imagemap. Dowolny katalog lub rodzaj dokumentu skonfigurowany do
1587 używania procedury obsługi imap-file (poprzez AddHandler lub
1588 SetHandler) będzie przetwarzany przez ten moduł.
1589
1590 %package mod_include
1591 Summary:        Server-parsed html documents (Server Side Includes)
1592 Summary(pl.UTF-8):      Dokumenty przetwarzane przez serwer (Server Side Includes)
1593 Group:          Networking/Daemons/HTTP
1594 URL:            http://httpd.apache.org/docs/2.4/mod/mod_include.html
1595 Requires:       %{name}-base = %{version}-%{release}
1596 Provides:       apache(mod_include) = %{version}-%{release}
1597
1598 %description mod_include
1599 This module provides a filter which will process files before they are
1600 sent to the client. The processing is controlled by specially
1601 formatted SGML comments, referred to as elements. These elements allow
1602 conditional text, the inclusion of other files or programs, as well as
1603 the setting and printing of environment variables.
1604
1605 %description mod_include -l pl.UTF-8
1606 Ten moduł dostarcza procedurę obsługi przetwarzającą pliki przed
1607 wysłaniem ich do klienta. Przetwarzanie jest sterowane specjalnie
1608 sformatowanymi komentarzami SGML, nazywanymi elementami. Elementy te
1609 pozwalają na tekst warunkowy, dołączanie innych plików lub programów,
1610 a także ustawianie i wypisywanie zmiennych środowiskowych.
1611
1612 %package mod_info
1613 Summary:        Apache module with comprehensive overview of the server configuration
1614 Summary(pl.UTF-8):      Moduł Apache'a udostępniający informacje o serwerze
1615 Group:          Networking/Daemons/HTTP
1616 URL:            http://httpd.apache.org/docs/2.4/mod/mod_info.html
1617 Requires:       %{name}-base = %{version}-%{release}
1618 Requires:       %{name}-mod_authz_host = %{version}-%{release}
1619 Provides:       apache(mod_info) = %{version}-%{release}
1620
1621 %description mod_info
1622 This package contains mod_info module. It provides a comprehensive
1623 overview of the server configuration including all installed modules
1624 and directives in the configuration files.
1625
1626 %description mod_info -l pl.UTF-8
1627 Moduł udostępniający informacje o konfiguracji serwera,
1628 zainstalowanych modułach itp.
1629
1630 %package mod_lbmethod_bybusyness
1631 Summary:        Pending Request Counting load balancer scheduler algorithm for mod_proxy_balancer
1632 Summary(pl.UTF-8):      Algorytm rozkładania ruchu mod_proxy_balancer w oparciu o liczbę żądań do przetworzenia
1633 Group:          Networking/Daemons/HTTP
1634 URL:            http://httpd.apache.org/docs/2.4/mod/mod_lbmethod_bybusyness.html
1635 Requires:       %{name}-base = %{version}-%{release}
1636 Requires:       %{name}-mod_proxy = %{version}-%{release}
1637 Provides:       apache(mod_lbmethod_bybusyness) = %{version}-%{release}
1638
1639 %description mod_lbmethod_bybusyness
1640 Pending Request Counting load balancer scheduler algorithm for
1641 mod_proxy_balancer.
1642
1643 %description mod_lbmethod_bybusyness -l pl.UTF-8
1644 Moduł algorytmu szeregowania rozkładania ruchu dla modułu
1645 mod_proxy_balancer w oparciu o liczbę żądań pozostałych do
1646 przetworzenia (Pending Request Count).
1647
1648 %package mod_lbmethod_byrequests
1649 Summary:        Request Counting load balancer scheduler algorithm for mod_proxy_balancer
1650 Summary(pl.UTF-8):      Algorytm rozkładania ruchu mod_proxy_balancer w oparciu o liczbę żądań
1651 Group:          Networking/Daemons/HTTP
1652 URL:            http://httpd.apache.org/docs/2.4/mod/mod_lbmethod_byrequests.html
1653 Requires:       %{name}-base = %{version}-%{release}
1654 Requires:       %{name}-mod_proxy = %{version}-%{release}
1655 Provides:       apache(mod_lbmethod_byrequests) = %{version}-%{release}
1656
1657 %description mod_lbmethod_byrequests
1658 Request Counting load balancer scheduler algorithm for
1659 mod_proxy_balancer.
1660
1661 %description mod_lbmethod_byrequests -l pl.UTF-8
1662 Moduł algorytmu szeregowania rozkładania ruchu dla modułu
1663 mod_proxy_balancer w oparciu o liczbę żądań (Request Counting).
1664
1665 %package mod_lbmethod_bytraffic
1666 Summary:        Weighted Traffic Counting load balancer scheduler algorithm for mod_proxy_balancer
1667 Summary(pl.UTF-8):      Algorytm rozkładania ruchu mod_proxy_balancer w oparciu o ważony ruch
1668 Group:          Networking/Daemons/HTTP
1669 URL:            http://httpd.apache.org/docs/2.4/mod/mod_lbmethod_bytraffic.html
1670 Requires:       %{name}-base = %{version}-%{release}
1671 Requires:       %{name}-mod_proxy = %{version}-%{release}
1672 Provides:       apache(mod_lbmethod_bytraffic) = %{version}-%{release}
1673
1674 %description mod_lbmethod_bytraffic
1675 Weighted Traffic Counting load balancer scheduler algorithm for
1676 mod_proxy_balancer.
1677
1678 %description mod_lbmethod_bytraffic -l pl.UTF-8
1679 Moduł algorytmu szeregowania rozkładania ruchu dla modułu
1680 mod_proxy_balancer w oparciu o ważone zliczanie ruchu (Weighted
1681 Traffic Counting).
1682
1683 %package mod_lbmethod_heartbeat
1684 Summary:        Heartbeat Traffic Counting load balancer scheduler algorithm for mod_proxy_balancer
1685 Summary(pl.UTF-8):      Algorytm rozkładania ruchu mod_proxy_balancer w oparciu o ruch i stan serwera
1686 Group:          Networking/Daemons/HTTP
1687 URL:            http://httpd.apache.org/docs/2.4/mod/mod_lbmethod_heartbeat.html
1688 Requires:       %{name}-base = %{version}-%{release}
1689 Requires:       %{name}-mod_proxy = %{version}-%{release}
1690 Provides:       apache(mod_lbmethod_heartbeat) = %{version}-%{release}
1691
1692 %description mod_lbmethod_heartbeat
1693 Heartbeat Traffic Counting load balancer scheduler algorithm for
1694 mod_proxy_balancer.
1695
1696 %description mod_lbmethod_heartbeat -l pl.UTF-8
1697 Moduł algorytmu szeregowania rozkładania ruchu dla modułu
1698 mod_proxy_balancer w oparciu o zliczanie ruchu i stan serwera
1699 (Heartbeat Traffic Counting).
1700
1701 %package mod_ldap
1702 Summary:        Apache module for LDAP connection pooling and result caching services for other LDAP modules
1703 Summary(pl.UTF-8):      Moduł Apache'a zarządzający połączeniami z serwerami LDAP
1704 Group:          Networking/Daemons/HTTP
1705 URL:            http://httpd.apache.org/docs/2.4/mod/mod_ldap.html
1706 Requires:       %{name}-base = %{version}-%{release}
1707 Provides:       apache(mod_ldap) = %{version}-%{release}
1708
1709 %description mod_ldap
1710 This module was created to improve the performance of websites relying
1711 on backend connections to LDAP servers. In addition to the functions
1712 provided by the standard LDAP libraries, this module adds an LDAP
1713 connection pool and an LDAP shared memory cache.
1714
1715 %description mod_ldap -l pl.UTF-8
1716 Moduł Apache'a poprawiający wydajność serwisów polegających na
1717 połączeniach z serwerami LDAP. Oprócz funkcjo udostępnianych przez
1718 standardowe biblioteki LDAP ten moduł dodaje zarządzanie pulą połączeń
1719 i współdzieloną pamięć podręczną zapytań.
1720
1721 %package mod_log_config
1722 Summary:        Logging of the requests made to the server
1723 Summary(pl.UTF-8):      Logowanie żądań zgłaszanych do serwera
1724 Group:          Networking/Daemons/HTTP
1725 URL:            http://httpd.apache.org/docs/2.4/mod/mod_log_config.html
1726 Requires:       %{name}-base = %{version}-%{release}
1727 Provides:       apache(mod_log_config) = %{version}-%{release}
1728 Provides:       webserver(log)
1729
1730 %description mod_log_config
1731 This module provides for flexible logging of client requests. Logs are
1732 written in a customizable format, and may be written directly to a
1733 file, or to an external program. Conditional logging is provided so
1734 that individual requests may be included or excluded from the logs
1735 based on characteristics of the request.
1736
1737 %description mod_log_config -l pl.UTF-8
1738 Ten moduł umożliwia elastyczne logowanie żądań klientów. Logi są
1739 zapisywane w konfigurowalnym formacie i mogą być zapisywane
1740 bezpośrednio do pliku lub przekazywane do zewnętrznego programu.
1741 Dostępne jest logowanie warunkowe polegające na włączeniu lub
1742 wyłączeniu poszczególnych żądań z logowania na podstawie
1743 charakterystyki żądania.
1744
1745 %package mod_log_debug
1746 Summary:        Additional configurable debug logging
1747 Summary(pl.UTF-8):      Dodatkowe, konfigurowalne logowanie diagnostyczne
1748 Group:          Networking/Daemons/HTTP
1749 URL:            http://httpd.apache.org/docs/2.4/mod/mod_log_debug.html
1750 Requires:       %{name}-base = %{version}-%{release}
1751 Provides:       apache(mod_log_debug) = %{version}-%{release}
1752
1753 %description mod_log_debug
1754 Additional configurable debug logging.
1755
1756 %description mod_log_debug -l pl.UTF-8
1757 Dodatkowe, konfigurowalne logowanie diagnostyczne.
1758
1759 %package mod_log_forensic
1760 Summary:        Forensic Logging of the requests made to the server
1761 Summary(pl.UTF-8):      Logowanie żadań zgłaszanych do serwera w celu późniejszej analizy
1762 Group:          Networking/Daemons/HTTP
1763 URL:            http://httpd.apache.org/docs/2.4/mod/mod_log_forensic.html
1764 Requires:       %{name}-base = %{version}-%{release}
1765 Provides:       apache(mod_log_forensic) = %{version}-%{release}
1766
1767 %description mod_log_forensic
1768 This module provides for forensic logging of client requests. Logging
1769 is done before and after processing a request, so the forensic log
1770 contains two log lines for each request.
1771
1772 %description mod_log_forensic -l pl.UTF-8
1773 Ten moduł pozwala na logowanie żądań w celu późniejszej analizy.
1774 Logowanie jest wykonywane przed i po przetworzeniu żądania, więc log
1775 zawiera dwie linie dla każdego żądania.
1776
1777 %package mod_logio
1778 Summary:        Logging of input and output bytes per request
1779 Summary(pl.UTF-8):      Logowanie liczby bajtów wejścia i wyjścia dla zapytań
1780 Group:          Networking/Daemons/HTTP
1781 URL:            http://httpd.apache.org/docs/2.4/mod/mod_logio.html
1782 Requires:       %{name}-base = %{version}-%{release}
1783 Requires:       %{name}-mod_log_config = %{version}-%{release}
1784 Provides:       apache(mod_logio) = %{version}-%{release}
1785
1786 %description mod_logio
1787 This module provides the logging of input and output number of bytes
1788 received/sent per request. The numbers reflect the actual bytes as
1789 received on the network, which then takes into account the headers and
1790 bodies of requests and responses. The counting is done before SSL/TLS
1791 on input and after SSL/TLS on output, so the numbers will correctly
1792 reflect any changes made by encryption.
1793
1794 %description mod_logio -l pl.UTF-8
1795 Ten moduł zapewnia logowanie liczby bajtów wejścia i wyjścia
1796 odbieranych/wysyłanych przy każdym zapytaniu. Liczby odzwierciedlają
1797 rzeczywiste bajty przesyłane przez sieć, z wliczonymi nagłówkami i
1798 ciałami żądań i odpowiedzi. Zliczanie jest wykonywane przed SSL/TLS na
1799 wejściu i po SSL/TLS na wyjściu, więc liczby będą właściwie
1800 odzwierciedlały wszystkie zmiany dokonywane przez szyfrowanie.
1801
1802 %package mod_lua
1803 Summary:        Provides Lua hooks into various portions of the HTTP request processing
1804 Summary(pl.UTF-8):      Zaczepienia Lua do różnych etapów przetwarzania żądań HTTP
1805 Group:          Networking/Daemons/HTTP
1806 URL:            http://httpd.apache.org/docs/2.4/mod/mod_lua.html
1807 Requires:       %{name}-base = %{version}-%{release}
1808 Provides:       apache(mod_lua) = %{version}-%{release}
1809
1810 %description mod_lua
1811 This module allows the server to be extended with scripts written in
1812 the Lua programming language. The extension points (hooks) available
1813 with mod_lua include many of the hooks available to natively compiled
1814 Apache HTTP Server modules, such as mapping requests to files,
1815 generating dynamic responses, access control, authentication, and
1816 authorization.
1817
1818 %description mod_lua -l pl.UTF-8
1819 Ten moduł pozwala na rozszerzanie serwera poprzez skrypty napisane w
1820 języku Lua. Punkty rozszerzania (zaczepienia) dostępne poprzez mod_lua
1821 obejmują wiele punktów zaczepienia dostępnych w natywnie kompilowanych
1822 modułach serwera HTTP Apache, takich jak odwzorowywanie żądań na
1823 pliki, generowanie dynamicznych odpowiedzi, kontrola dostępu,
1824 uwierzytelnianie i autoryzacja.
1825
1826 %package mod_macro
1827 Summary:        Provides macros within Apache runtime configuration files
1828 Summary(pl.UTF-8):      Makra wewnątrz klików konfiguracyjnych Apache'a
1829 Group:          Networking/Daemons/HTTP
1830 URL:            http://httpd.apache.org/docs/2.4/mod/mod_macro.html
1831 Requires:       %{name}-base = %{version}-%{release}
1832 Provides:       apache(mod_macro) = %{version}-%{release}
1833
1834 %description mod_macro
1835 This module provides macros within Apache runtime configuration files.
1836 These macros have parameters. They are expanded when used (parameters
1837 are substituted by their values given as an argument), and the result
1838 is processed normally.
1839
1840 %description mod_macro -l pl.UTF-8
1841 Ten moduł umożliwia tworzenie makr wewnątrz plików konfiguracyjnych
1842 Apache'a. Makra mogą mieć parametry. Makra są rozwijane w momencie
1843 użycia (argumenty makra są podstawiane za wartości parametrów), a
1844 wynik jest przetwarzany jak normalna konfiguracja.
1845
1846 %package mod_md
1847 Summary:        Managing certificate provisioning via the ACME protocol
1848 Summary(pl.UTF-8):      Zarządzanie certyfikatami przez protokół ACME
1849 Group:          Networking/Daemons/HTTP
1850 URL:            http://httpd.apache.org/docs/2.4/mod/mod_macro.html
1851 Requires:       %{name}-base = %{version}-%{release}
1852 Requires:       apache(mod_watchdog) = %{version}-%{release}
1853 Provides:       apache(mod_md) = %{version}-%{release}
1854
1855 %description mod_md
1856 This module manages common properties of domains for one or more
1857 virtual hosts. Specifically it can use the ACME protocol to automate
1858 certificate provisioning. These will be configured for managed domains
1859 and their virtual hosts automatically. This includes renewal of
1860 certificates before they expire.
1861
1862 %description mod_md -l pl.UTF-8
1863 Moduł zarządzający właściwościami domen dla jednego lub więcej hostów
1864 wirtualnych. Konkretnie może używać protokołu ACME do automatyzacji
1865 instalacji certyfikatów. Certyfikaty będą automatycznie aktywowane dla
1866 zarządzanych domen i hostów wirtualnych w tych domenach. Instalacji
1867 oraz odnowień certyfikatów przed wygaśnięciem.
1868
1869 %package mod_mime
1870 Summary:        Associates the requested filename's extensions with the file's behavior and content
1871 Summary(pl.UTF-8):      Wiązanie określonych rozszerzeń plików z zachowaniem i zawartością
1872 Group:          Networking/Daemons/HTTP
1873 URL:            http://httpd.apache.org/docs/2.4/mod/mod_mime.html
1874 Requires:       %{name}-base = %{version}-%{release}
1875 Requires:       mailcap
1876 Provides:       apache(mod_mime) = %{version}-%{release}
1877 Provides:       webserver(mime)
1878
1879 %description mod_mime
1880 This module is used to associate various bits of "meta information"
1881 with files by their filename extensions. This information relates the
1882 filename of the document to it's mime-type, language, character set
1883 and encoding. This information is sent to the browser, and
1884 participates in content negotiation, so the user's preferences are
1885 respected when choosing one of several possible files to serve. See
1886 mod_negotiation for more information about content negotiation.
1887
1888 %description mod_mime -l pl.UTF-8
1889 Ten moduł służy do wiązania określonych części "metainformacji" z
1890 plikami w zależności od rozszerzeń nazw plików. Informacje te łączą
1891 nazwy plików dokumentów z ich typem MIME, językiem, zestawem znaków i
1892 kodowaniem. Informacje te są wysyłane przeglądarce i mają wpływ na
1893 negocjację treści, tak że preferencje użytkownika są respektowane przy
1894 wybieraniu jednego z kilku dostępnych do zaserwowania. Więcej
1895 informacji o negocjacji treści jest w dokumentacji do mod_negotiation.
1896
1897 %package mod_mime_magic
1898 Summary:        Determines the MIME type of a file by looking at a few bytes of its contents
1899 Summary(pl.UTF-8):      Określanie typu MIME pliku poprzez sprawdzanie kilku bajtów jego zawartości
1900 Group:          Networking/Daemons/HTTP
1901 URL:            http://httpd.apache.org/docs/2.4/mod/mod_mime_magic.html
1902 Requires:       %{name}-base = %{version}-%{release}
1903 Requires:       file
1904 Provides:       apache(mod_mime_magic) = %{version}-%{release}
1905
1906 %description mod_mime_magic
1907 This module determines the MIME type of files in the same way the Unix
1908 file(1) command works: it looks at the first few bytes of the file. It
1909 is intended as a "second line of defense" for cases that mod_mime
1910 can't resolve.
1911
1912 %description mod_mime_magic -l pl.UTF-8
1913 Ten moduł określa typ MIME plików w ten sam sposób, co uniksowe
1914 polecenie file(1): patrzy na kilka początkowych bajtów pliku. Ma
1915 służyć jako "druga linia obrony" dla przypadków, których nie może
1916 rozwiązać mod_mime.
1917
1918 %package mod_negotiation
1919 Summary:        Provides for content negotiation
1920 Summary(pl.UTF-8):      Moduł do negocjacji treści
1921 Group:          Networking/Daemons/HTTP
1922 URL:            http://httpd.apache.org/docs/2.4/mod/mod_negotiation.html
1923 Requires:       %{name}-base = %{version}-%{release}
1924 Requires:       %{name}-mod_mime = %{version}-%{release}
1925 Provides:       apache(mod_negotiation) = %{version}-%{release}
1926
1927 %description mod_negotiation
1928 Content negotiation, or more accurately content selection, is the
1929 selection of the document that best matches the clients capabilities,
1930 from one of several available documents.
1931
1932 %description mod_negotiation -l pl.UTF-8
1933 Negocjacja treści, lub bardziej precyzyjnie - wybór treści, to wybór
1934 dokumentu najbardziej odpowiadającego możliwościom klientów spośród
1935 kilku możliwych dokumentów.
1936
1937 %package mod_proxy
1938 Summary:        Apache module with Web proxy
1939 Summary(pl.UTF-8):      Moduł Apache'a dodający obsługę serwera proxy
1940 Group:          Networking/Daemons/HTTP
1941 URL:            http://httpd.apache.org/docs/2.4/mod/mod_proxy.html
1942 Requires:       %{name}-base = %{version}-%{release}
1943 Requires:       %{name}-mod_authz_host = %{version}-%{release}
1944 Requires:       %{name}-mod_xml2enc = %{version}-%{release}
1945 Provides:       apache(mod_proxy) = %{version}-%{release}
1946
1947 %description mod_proxy
1948 This package contains module with implementation a proxy/cache for
1949 Apache. It implements proxying capability for FTP, CONNECT (for SSL),
1950 HTTP/0.9, HTTP/1.0 and HTTP/1.1. The module can be configured to
1951 connect to other proxy modules for these and other protocols.
1952
1953 %description mod_proxy -l pl.UTF-8
1954 Moduł zawiera implementację serwera proxy/cache dla Apache.
1955 Implementacja zawiera obsługę FTP, CONNECT (dla SSL), HTTP/0.9,
1956 HTTP/1.0 i HTTP/1.1.
1957
1958 %package mod_ratelimit
1959 Summary:        Bandwidth Rate Limiting for Clients
1960 Summary(pl.UTF-8):      Ograniczanie pasma dla klientów
1961 Group:          Networking/Daemons/HTTP
1962 URL:            http://httpd.apache.org/docs/2.4/mod/mod_ratelimit.html
1963 Requires:       %{name}-base = %{version}-%{release}
1964 Provides:       apache(mod_ratelimit) = %{version}-%{release}
1965
1966 %description mod_ratelimit
1967 Provides a filter named RATE_LIMIT to limit client bandwidth. The
1968 connection speed to be simulated is specified, in KiB/s, using the
1969 environment variable rate-limit.
1970
1971 %description mod_ratelimit -l pl.UTF-8
1972 Ten moduł udostępnia filtr o nazwie RATE_LIMIT do ograniczania pasma
1973 klienta. Szybkość połączenia do symulacji jest podawana w KiB/s
1974 poprzez zmienną środowiskową rate-limit.
1975
1976 %package mod_reflector
1977 Summary:        Reflect a request body as a response via the output filter stack
1978 Summary(pl.UTF-8):      Odbijanie ciała żądania jako odpowiedzi poprzez stos filtrów wyjściowych
1979 Group:          Networking/Daemons/HTTP
1980 URL:            http://httpd.apache.org/docs/2.4/mod/mod_reflector.html
1981 Requires:       %{name}-base = %{version}-%{release}
1982 Provides:       apache(mod_reflector) = %{version}-%{release}
1983
1984 %description mod_reflector
1985 This module allows request bodies to be reflected back to the client,
1986 in the process passing the request through the output filter stack. A
1987 suitably configured chain of filters can be used to transform the
1988 request into a response. This module can be used to turn an output
1989 filter into an HTTP service.
1990
1991 %description mod_reflector -l pl.UTF-8
1992 Ten moduł pozwala na odbijanie ciał żądań z powrotem do klienta w
1993 procesie przekazywania żądania poprzez stos filtrów wyjściowych.
1994 Odpowiednio skonfigurowany łańcuch filtrów może przekształcić żądanie
1995 w odpowiedź. Tego modułu można użyć do zamiany filtra wyjściowego w
1996 usługę HTTP.
1997
1998 %package mod_remoteip
1999 Summary:        Replaces the original client IP address for the connection
2000 Summary(pl.UTF-8):      Podmiana oryginalnego adresu IP klienta dla połączenia
2001 Group:          Networking/Daemons/HTTP
2002 URL:            http://httpd.apache.org/docs/2.4/mod/mod_remoteip.html
2003 Requires:       %{name}-base = %{version}-%{release}
2004 Provides:       apache(mod_remoteip) = %{version}-%{release}
2005
2006 %description mod_remoteip
2007 This module is used to treat the useragent which initiated the request
2008 as the originating useragent as identified by httpd for the purposes
2009 of authorization and logging, even where that useragent is behind a
2010 load balancer, front end server, or proxy server.
2011
2012 The module overrides the client IP address for the connection with the
2013 useragent IP address reported in the request header configured with
2014 the RemoteIPHeader directive.
2015
2016 Once replaced as instructed, this overridden useragent IP address is
2017 then used for the mod_authz_host <Require ip> feature, is reported by
2018 mod_status, and is recorded by mod_log_config %%a and core %%a format
2019 strings. The underlying client IP of the connection is available in
2020 the %%{c}a format string.
2021
2022 %description mod_remoteip -l pl.UTF-8
2023 Ten moduł pozwala traktować adres przeglądarki, który zapoczątkował
2024 żądanie, jako oryginalny adres identyfikowany przez httpd do celów
2025 autoryzacji i logowania, nawet jeśli przeglądarka jest za load
2026 balancerem, serwerem frontendowym lub proxy.
2027
2028 Moduł nadpisuje adres IP klienta dla połączenia adresem IP zgłaszanym
2029 w nagłówku żądania konfigurowanym dyrektywą RemoteIPHeader.
2030
2031 Po zastąpieniu zgodnie z instrukcją ten nadpisany adres IP jest
2032 używany w dyrektywie <Require ip> modułu mod_authz_host, jest
2033 raportowany przez mod_status oraz zapisywany poprzez łańcuchy
2034 formatujące %%a modułu mod_log_config. Bezpośrednie IP klienckie
2035 połączenia jest dostępne poprzez łańcuch formatujący %%{c}a.
2036
2037 %package mod_reqtimeout
2038 Summary:        Apache module to set timeout and minimum data rate for receiving requests
2039 Summary(pl.UTF-8):      Moduł Apache'a pozwalający na ustawianie limitu czasu oraz minimalnego transferu danych
2040 Group:          Networking/Daemons/HTTP
2041 URL:            http://httpd.apache.org/docs/2.4/mod/mod_reqtimeout.html
2042 Requires:       %{name}-base = %{version}-%{release}
2043 Provides:       apache(mod_reqtimeout) = %{version}-%{release}
2044
2045 %description mod_reqtimeout
2046 Apache module to set timeout and minimum data rate for receiving
2047 requests.
2048
2049 %description mod_reqtimeout -l pl.UTF-8
2050 Moduł Apache'a pozwalający na ustawianie limitu czasu oraz minimalnego
2051 transferu danych.
2052
2053 %package mod_request
2054 Summary:        Filters to handle and make available HTTP request bodies
2055 Summary(pl.UTF-8):      Filtry do obsługi i udostępniania ciał żądań HTTP
2056 Group:          Networking/Daemons/HTTP
2057 URL:            http://httpd.apache.org/docs/2.4/mod/mod_request.html
2058 Requires:       %{name}-base = %{version}-%{release}
2059 Provides:       apache(mod_request) = %{version}-%{release}
2060
2061 %description mod_request
2062 Filters to handle and make available HTTP request bodies.
2063
2064 %description mod_request -l pl.UTF-8
2065 Filtry do obsługi i udostępniania ciał żądań HTTP.
2066
2067 %package mod_rewrite
2068 Summary:        Apache module with rule-based engine for rewrite requested URLs on the fly
2069 Summary(pl.UTF-8):      Moduł Apache'a do "przepisywania" adresów URL w locie
2070 Group:          Networking/Daemons/HTTP
2071 URL:            http://httpd.apache.org/docs/2.4/mod/mod_rewrite.html
2072 Requires:       %{name}-base = %{version}-%{release}
2073 Provides:       apache(mod_rewrite) = %{version}-%{release}
2074 Provides:       webserver(rewrite)
2075
2076 %description mod_rewrite
2077 This package contains It provides a rule-based rewriting engine to
2078 rewrite requested URLs on the fly.
2079
2080 %description mod_rewrite -l pl.UTF-8
2081 Moduł oferujący możliwość "przepisywania" adresów URL w locie.
2082
2083 %package mod_sed
2084 Summary:        Filter Input (request) and Output (response) content using sed syntax
2085 Summary(pl.UTF-8):      Filtrowanie treści wejścia (żądań) i wyjścia (odpowiedzi) przy użyciu składni seda
2086 Group:          Networking/Daemons/HTTP
2087 URL:            http://httpd.apache.org/docs/2.4/mod/mod_sed.html
2088 Requires:       %{name}-base = %{version}-%{release}
2089 Provides:       apache(mod_sed) = %{version}-%{release}
2090
2091 %description mod_sed
2092 mod_sed is an in-process content filter. The mod_sed filter implements
2093 the sed editing commands implemented by the Solaris 10 sed program as
2094 described in the manual page. However, unlike sed, mod_sed doesn't
2095 take data from standard input. Instead, the filter acts on the entity
2096 data sent between client and server. mod_sed can be used as an input
2097 or output filter. mod_sed is a content filter, which means that it
2098 cannot be used to modify client or server HTTP headers.
2099
2100 The mod_sed output filter accepts a chunk of data, executes the sed
2101 scripts on the data, and generates the output which is passed to the
2102 next filter in the chain.
2103
2104 The mod_sed input filter reads the data from the next filter in the
2105 chain, executes the sed scripts, and returns the generated data to the
2106 caller filter in the filter chain.
2107
2108 %description mod_sed -l pl.UTF-8
2109 Moduł mod_sed to filtr treści wewnątrz procesu. Filtr mod_sed
2110 implementuje polecenia edycyjne programu sed zgodnie z implementacją z
2111 systemu Solaris 10, opisaną na stronie man. W odróżnieniu od seda nie
2112 przyjmuje danych ze standardowego wejścia, ale przetwarza dane
2113 przesyłane między klientem a serwerem. mod_sed może być używany jako
2114 filtr wejściowy lub wyjściowy. mod_sed to filtr treści, co oznacza, że
2115 nie może być używany do modyfikowania nagłówków HTTP klienta ani
2116 serwera.
2117
2118 Filtr wyjściowy mod_sed pobiera porcję danych, wykonuje na nich
2119 skrypty seda, a wygenerowane dane przekazuje do następnego filtra w
2120 łańcuchu.
2121
2122 Filtr wejściowy mod_sed odczytuje dane z następnego filtra w łańcuchu,
2123 wykonuje skrypty seda i zwraca wygenerowane dane do filtra
2124 wywołującego w łańcuchu.
2125
2126 %package mod_session
2127 Summary:        Session support
2128 Summary(pl.UTF-8):      Obsługa sesji
2129 Group:          Networking/Daemons/HTTP
2130 URL:            http://httpd.apache.org/docs/2.4/mod/mod_session.html
2131 Requires:       %{name}-base = %{version}-%{release}
2132 Provides:       apache(mod_session) = %{version}-%{release}
2133
2134 %description mod_session
2135 This module provides support for a server wide per user session
2136 interface. Sessions can be used for keeping track of whether a user
2137 has been logged in, or for other per user information that should be
2138 kept available across requests.
2139
2140 Sessions may be stored on the server, or may be stored on the browser.
2141 Sessions may also be optionally encrypted for added security. These
2142 features are divided into several modules in addition to mod_session:
2143 mod_session_crypto, mod_session_cookie and mod_session_dbd. Depending
2144 on the server requirements, load the appropriate modules into the
2145 server.
2146
2147 Sessions may be manipulated from other modules that depend on the
2148 session, or the session may be read from and written to using
2149 environment variables and HTTP headers, as appropriate.
2150
2151 %description mod_session -l pl.UTF-8
2152 Ten moduł zapewnia obsługę sesji użytkownika po stronie serwera. Sesje
2153 można wykorzystywać do śledzenia, czy użytkownik jest zalogowany, albo
2154 do przechowywania innych informacji związanych z użytkownikiem, które
2155 powinny być pamiętane między żądaniami.
2156
2157 Sesje mogą być przechowywane na serwerze, albo przez przeglądarkę.
2158 Mogą być opcjonalnie szyfrowane dla poprawy bezpieczeństwa. Te funkcje
2159 są rozdzielone między kilka modułów poza mod_session:
2160 mod_session_crypto, mod_session_cookie oraz mod_session_dbd. W
2161 zależności od wymagań można poszczególne moduły załadować do serwera.
2162
2163 Sesjami można manipulować z poziomu innych modułów zależnych od sesji,
2164 można je też odczytywać i zapisywać przy użyciu odpowiednich zmiennych
2165 środowiskowych oraz nagłówków HTTP.
2166
2167 %package mod_session_cookie
2168 Summary:        Cookie based session support
2169 Summary(pl.UTF-8):      Obsługa sesji opartych na ciasteczkach (cookie)
2170 Group:          Networking/Daemons/HTTP
2171 URL:            http://httpd.apache.org/docs/2.4/mod/mod_session_cookie.html
2172 Requires:       %{name}-base = %{version}-%{release}
2173 Requires:       %{name}-mod_session = %{version}-%{release}
2174 Provides:       apache(mod_session_cookie) = %{version}-%{release}
2175
2176 %description mod_session_cookie
2177 This submodule of mod_session provides support for the storage of user
2178 sessions on the remote browser within HTTP cookies.
2179
2180 Using cookies to store a session removes the need for the server or a
2181 group of servers to store the session locally, or collaborate to share
2182 a session, and can be useful for high traffic environments where a
2183 server based session might be too resource intensive.
2184
2185 %description mod_session_cookie -l pl.UTF-8
2186 Ten podmoduł mod_session zapewnia obsługę przechowywania sesji
2187 użytkownika w zdalnej przeglądarce wewnątrz ciasteczek (cookie) HTTP.
2188
2189 Wykorzystanie ciasteczek do zapisywania sesji eliminuje potrzebę
2190 zapisywania tych informacji lokalnie przez serwer lub grupę serwerów
2191 oraz współdzielenia sesji; jest przydatne także w środowiskach z dużym
2192 ruchem, gdzie sesje trzymane po stronie serwera mogłyby zajmować zbyt
2193 dużo zasobów.
2194
2195 %package mod_session_crypto
2196 Summary:        Session encryption support
2197 Summary(pl.UTF-8):      Obsługa szyfrowania sesji
2198 Group:          Networking/Daemons/HTTP
2199 URL:            http://httpd.apache.org/docs/2.4/mod/mod_session_crypto.html
2200 Requires:       %{name}-base = %{version}-%{release}
2201 Requires:       %{name}-mod_session = %{version}-%{release}
2202 Requires:       apr-util-crypto-openssl >= %{apr_util_ver}
2203 Provides:       apache(mod_session_crypto) = %{version}-%{release}
2204
2205 %description mod_session_crypto
2206 This submodule of mod_session provides support for the encryption of
2207 user sessions before being written to a local database, or written to
2208 a remote browser via an HTTP cookie.
2209
2210 This can help provide privacy to user sessions where the contents of
2211 the session should be kept private from the user, or where protection
2212 is needed against the effects of cross site scripting attacks.
2213
2214 %description mod_session_crypto -l pl.UTF-8
2215 Ten modmoduł mod_session zapewnia obsługę szyfrowania sesji
2216 użytkownika przed zapisaniem do lokalnej bazy danych lub w zdalnej
2217 przeglądarce wewnątrz ciasteczka (cookie) HTTP.
2218
2219 Może to pomóc w zapewnieniu prywatności sesji użytkowników, gdzie
2220 zawartość sesji powinna być chroniona przed użytkownikiem lub
2221 niezbędna jest ochrona przed efektami ataków CSS (cross-site
2222 scripting).
2223
2224 %package mod_session_dbd
2225 Summary:        DBD/SQL based session support
2226 Summary(pl.UTF-8):      Obsługa sesji opartych na DBD/SQL
2227 Group:          Networking/Daemons/HTTP
2228 URL:            http://httpd.apache.org/docs/2.4/mod/mod_session_dbd.html
2229 Requires:       %{name}-base = %{version}-%{release}
2230 Requires:       %{name}-mod_dbd = %{version}-%{release}
2231 Requires:       %{name}-mod_session = %{version}-%{release}
2232 Provides:       apache(mod_session_dbd) = %{version}-%{release}
2233
2234 %description mod_session_dbd
2235 This submodule of mod_session provides support for the storage of user
2236 sessions within a SQL database using the mod_dbd module.
2237
2238 Sessions can either be anonymous, where the session is keyed by a
2239 unique UUID string stored on the browser in a cookie, or per user,
2240 where the session is keyed against the userid of the logged in user.
2241
2242 SQL based sessions are hidden from the browser, and so offer a measure
2243 of privacy without the need for encryption.
2244
2245 Different webservers within a server farm may choose to share a
2246 database, and so share sessions with one another.
2247
2248 %description mod_session_dbd -l pl.UTF-8
2249 Ten podmoduł mod_session zapewnia obsługę przechowywania sesji
2250 użytkownika w bazie SQL poprzez moduł mod_dbd.
2251
2252 Sesje oparte na SQL-u są ukryte dla przeglądarki, więc dają pewien
2253 stopień prywatności bez potrzeby szyfrowania.
2254
2255 Różne serwery WWW z farmy mogą dzielić współdzielić bazę danych, tym
2256 samym współdzieląc sesje.
2257
2258 %package mod_setenvif
2259 Summary:        Allows the setting of environment variables based on characteristics of the request
2260 Summary(pl.UTF-8):      Ustawianie zmiennych środowiskowych w oparciu o charakterystykę żądania
2261 Group:          Networking/Daemons/HTTP
2262 URL:            http://httpd.apache.org/docs/2.4/mod/mod_setenvif.html
2263 Requires:       %{name}-base = %{version}-%{release}
2264 Provides:       apache(mod_setenvif) = %{version}-%{release}
2265
2266 %description mod_setenvif
2267 The mod_setenvif module allows you to set environment variables
2268 according to whether different aspects of the request match regular
2269 expressions you specify. These environment variables can be used by
2270 other parts of the server to make decisions about actions to be taken.
2271
2272 %description mod_setenvif -l pl.UTF-8
2273 Moduł mod_setenvif pozwala na ustawianie zmiennych środowiskowych w
2274 zależności od różnych aspektów żądania pasujących do podanych wyrażeń
2275 regularnych. Te zmienne środowiskowe mogą być używane przez inne
2276 części serwera do podejmowania decyzji o podejmowanych akcjach.
2277
2278 %package mod_slotmem_plain
2279 Summary:        Slot-based shared memory provider
2280 Summary(pl.UTF-8):      Moduł zapewniający pamięć dzieloną w oparciu o sloty
2281 Group:          Networking/Daemons/HTTP
2282 URL:            http://httpd.apache.org/docs/2.4/mod/mod_slotmem_plain.html
2283 Requires:       %{name}-base = %{version}-%{release}
2284 Provides:       apache(mod_slotmem_plain) = %{version}-%{release}
2285
2286 %description mod_slotmem_plain
2287 mod_slotmem_plain is a memory provider which provides for creation and
2288 access to a plain memory segment in which the datasets are organized
2289 in "slots."
2290
2291 If the memory needs to be shared between threads and processes, a
2292 better provider would be mod_slotmem_shm.
2293
2294 %description mod_slotmem_plain -l pl.UTF-8
2295 mod_slotmem_plain to moduł dostarczający pamięć, pozwalający na
2296 tworzenie i dostęp do segmentu zwykłej pamięci, w której zbiory danych
2297 są zorganizowane w "sloty".
2298
2299 Jeśli pamięć musi być dzielona między wątki i procesy, lepszym
2300 rozwiązaniem będzie mod_slotmem_shm.
2301
2302 %package mod_slotmem_shm
2303 Summary:        Slot-based shared memory provider
2304 Summary(pl.UTF-8):      Moduł zapewniający pamięć dzieloną w oparciu o sloty
2305 Group:          Networking/Daemons/HTTP
2306 URL:            http://httpd.apache.org/docs/2.4/mod/mod_slotmem_shm.html
2307 Requires:       %{name}-base = %{version}-%{release}
2308 Provides:       apache(mod_slotmem_shm) = %{version}-%{release}
2309
2310 %description mod_slotmem_shm
2311 mod_slotmem_shm is a memory provider which provides for creation and
2312 access to a shared memory segment in which the datasets are organized
2313 in "slots."
2314
2315 All shared memory is cleared and cleaned with each restart, whether
2316 graceful or not. The data itself is stored and restored within a file
2317 noted by the name parameter in the create and attach calls.
2318
2319 %description mod_slotmem_shm -l pl.UTF-8
2320 mod_slotmem_plain to moduł dostarczający pamięć, pozwalający na
2321 tworzenie i dostęp do segmentu pamięci dzielonej, w której zbiory
2322 danych są zorganizowane w "sloty".
2323
2324 Cała pamięć współdzielona jest czyszczona przy każdym restarcie. Same
2325 dane są zapisywane i odtwarzane z pliku o nazwie podawanej jako
2326 parametr przy wywołaniach tworzenia i podłączania.
2327
2328 %package mod_socache_dbm
2329 Summary:        DBM based shared object cache provider
2330 Summary(pl.UTF-8):      Moduł zapewniający współdzieloną pamięć podręczną obiektów w oparciu o DBM
2331 Group:          Networking/Daemons/HTTP
2332 URL:            http://httpd.apache.org/docs/2.4/mod/mod_socache_dbm.html
2333 Requires:       %{name}-base = %{version}-%{release}
2334 Provides:       apache(mod_socache_dbm) = %{version}-%{release}
2335
2336 %description mod_socache_dbm
2337 mod_socache_dbm is a shared object cache provider which provides for
2338 creation and access to a cache backed by a DBM database.
2339
2340 %description mod_socache_dbm -l pl.UTF-8
2341 mod_socache_dbm to moduł dostarczający współdzieloną pamięć podręczną
2342 obiektów, zapewniający tworzenie i dostęp do cache'a zapisywanego w
2343 bazie DBM.
2344
2345 %package mod_socache_memcache
2346 Summary:        Memcache based shared object cache provider
2347 Summary(pl.UTF-8):      Moduł zapewniający współdzieloną pamięć podręczną obiektów w oparciu o memcache
2348 Group:          Networking/Daemons/HTTP
2349 URL:            http://httpd.apache.org/docs/2.4/mod/mod_socache_memcache.html
2350 Requires:       %{name}-base = %{version}-%{release}
2351 Provides:       apache(mod_socache_memcache) = %{version}-%{release}
2352
2353 %description mod_socache_memcache
2354 mod_socache_memcache is a shared object cache provider which provides
2355 for creation and access to a cache backed by the memcached
2356 high-performance, distributed memory object caching system.
2357
2358 %description mod_socache_memcache -l pl.UTF-8
2359 mod_socache_dbm to moduł dostarczający współdzieloną pamięć podręczną
2360 obiektów, zapewniający tworzenie i dostęp do cache'a zapisywanego w
2361 systemie memcached - wysoko wydajnym, ozproszonym systemie pamięci
2362 podręcznej obiektów.
2363
2364 %package mod_socache_redis
2365 Summary:        Redis based shared object cache provider
2366 Summary(pl.UTF-8):      Moduł zapewniający współdzieloną pamięć podręczną obiektów w oparciu o Redis
2367 Group:          Networking/Daemons/HTTP
2368 URL:            http://httpd.apache.org/docs/2.4/mod/mod_socache_redis.html
2369 Requires:       %{name}-base = %{version}-%{release}
2370 Provides:       apache(mod_socache_redis) = %{version}-%{release}
2371
2372 %description mod_socache_redis
2373 mod_socache_redis is a shared object cache provider which provides
2374 for creation and access to a cache backed by the redis
2375 high-performance, distributed memory object caching system.
2376
2377 %description mod_socache_redis -l pl.UTF-8
2378 mod_socache_dbm to moduł dostarczający współdzieloną pamięć podręczną
2379 obiektów, zapewniający tworzenie i dostęp do cache'a zapisywanego w
2380 systemie redis - wysoko wydajnym, rozproszonym systemie pamięci
2381 podręcznej obiektów.
2382
2383 %package mod_socache_shmcb
2384 Summary:        shmcb based shared object cache provider
2385 Summary(pl.UTF-8):      Moduł zapewniający współdzieloną pamięć podręczną obiektów w oparciu o shmcb
2386 Group:          Networking/Daemons/HTTP
2387 URL:            http://httpd.apache.org/docs/2.4/mod/mod_socache_shmcb.html
2388 Requires:       %{name}-base = %{version}-%{release}
2389 Provides:       apache(mod_socache_shmcb) = %{version}-%{release}
2390
2391 %description mod_socache_shmcb
2392 mod_socache_shmcb is a shared object cache provider which provides for
2393 creation and access to a cache backed by a high-performance cyclic
2394 buffer inside a shared memory segment.
2395
2396 %description mod_socache_shmcb -l pl.UTF-8
2397 mod_socache_dbm to moduł dostarczający współdzieloną pamięć podręczną
2398 obiektów, zapewniający tworzenie i dostęp do cache'a zapisywanego w
2399 wysoko wydajnym buforze cyklicznym wewnątrz segmentu pamięci
2400 dzielonej.
2401
2402 %package mod_speling
2403 Summary:        Attempts to correct mistaken URLs by ignoring capitalization and by allowing up to one misspelling
2404 Summary(pl.UTF-8):      Próba poprawiania błędnych URL-i poprzez ignorowanie wielkości liter i zezwalanie na jedną literówkę
2405 Group:          Networking/Daemons/HTTP
2406 URL:            http://httpd.apache.org/docs/2.4/mod/mod_speling.html
2407 Requires:       %{name}-base = %{version}-%{release}
2408 Provides:       apache(mod_speling) = %{version}-%{release}
2409
2410 %description mod_speling
2411 Requests to documents sometimes cannot be served by the core apache
2412 server because the request was misspelled or miscapitalized. This
2413 module addresses this problem by trying to find a matching document,
2414 even after all other modules gave up. It does its work by comparing
2415 each document name in the requested directory against the requested
2416 document name without regard to case, and allowing up to one
2417 misspelling (character insertion / omission / transposition or wrong
2418 character). A list is built with all document names which were matched
2419 using this strategy.
2420
2421 %description mod_speling -l pl.UTF-8
2422 Czasami żądania dokumentów nie mogą być wykonane przez sam serwer
2423 Apache, ponieważ żądanie zostało napisane z błędem w znakach lub
2424 wielkości liter. Ten moduł próbuje rozwiązać ten problem próbując
2425 znaleźć pasujący dokument, nawet jeśli inne moduły się poddały. Działa
2426 on poprzez porównywanie nazwy każdego dokumentu w żądanym katalogu z
2427 żądaną nazwą dokumentu bez zwracania uwagi na wielkość liter i
2428 pozwalając na jeden błąd (dodany, pominięty, przestawiony lub zły
2429 znak). Tworzona jest lista dla wszystkich nazw dokumentów pasujących
2430 dla tej strategii.
2431
2432 %package mod_ssl
2433 Summary:        SSL/TLS module for the Apache HTTP server
2434 Summary(pl.UTF-8):      Moduł SSL/TSL dla serwera Apache
2435 Summary(ru.UTF-8):      Модуль SSL/TLS для веб-сервера Apache
2436 Epoch:          1
2437 Group:          Networking/Daemons/HTTP
2438 URL:            http://httpd.apache.org/docs/2.4/mod/mod_ssl.html
2439 Requires:       %{name}-base = %{version}-%{release}
2440 Requires:       %{name}-mod_socache_shmcb = %{version}-%{release}
2441 Requires:       apr-util-dbm-db >= %{apr_util_ver}
2442 Requires:       openssl >= %{openssl_ver}
2443 Provides:       apache(mod_ssl) = 1:%{version}-%{release}
2444
2445 %description mod_ssl
2446 The mod_ssl module provides strong cryptography for the Apache Web
2447 server via the Secure Sockets Layer (SSL) and Transport Layer Security
2448 (TLS) protocols.
2449
2450 %description mod_ssl -l pl.UTF-8
2451 Moduł mod_ssl udostępnia wsparcie do silnej kryptografii dla serwera
2452 Apache poprzez protokoły SSL/TSL (Secure Sockets Layer/Transport Layer
2453 Security).
2454
2455 %description mod_ssl -l ru.UTF-8
2456 Модуль mod_ssl обеспечивает поддержку в веб-сервере Apache надежного
2457 шифрования средствами Secure Sockets Layer (SSL) и Transport Layer
2458
2459 %package mod_status
2460 Summary:        Server status report module for Apache
2461 Summary(pl.UTF-8):      Moduł udostępniający informacje statystyczne z serwera Apache
2462 Group:          Networking/Daemons/HTTP
2463 URL:            http://httpd.apache.org/docs/2.4/mod/mod_status.html
2464 Requires:       %{name}-base = %{version}-%{release}
2465 Requires:       %{name}-mod_authz_host = %{version}-%{release}
2466 Provides:       apache(mod_status) = %{version}-%{release}
2467
2468 %description mod_status
2469 The Status module allows a server administrator to find out how well
2470 their server is performing. A HTML page is presented that gives the
2471 current server statistics in an easily readable form. If required this
2472 page can be made to automatically refresh (given a compatible
2473 browser).
2474
2475 %description mod_status -l pl.UTF-8
2476 Moduł pozwala administratorowi na przeglądanie statystyk dotyczących
2477 pracy serwera Apache (w postaci strony HTML).
2478
2479 %package mod_substitute
2480 Summary:        Substitute module for Apache
2481 Summary(pl.UTF-8):      Moduł pozwalający na znajdywanie i zastępowanie wyjścia dla serwera Apache
2482 Group:          Networking/Daemons/HTTP
2483 URL:            http://httpd.apache.org/docs/2.4/mod/mod_substitute.html
2484 Requires:       %{name}-base = %{version}-%{release}
2485 Provides:       apache(mod_substitute) = %{version}-%{release}
2486
2487 %description mod_substitute
2488 The Substitute module provides a mechanism to perform both regular
2489 expression and fixed string substitutions on response bodies.
2490
2491 %description mod_substitute -l pl.UTF-8
2492 Moduł pozwala na zastępowanie ciągów znaków w wyjściu również na
2493 podstawie wyrażenia regularnego.
2494
2495 %package mod_unique_id
2496 Summary:        Apache module which provides a magic token for each request
2497 Summary(pl.UTF-8):      Moduł Apache'a nadający każdemu zapytaniu unikalny token
2498 Group:          Networking/Daemons/HTTP
2499 URL:            http://httpd.apache.org/docs/2.4/mod/mod_unique_id.html
2500 Requires:       %{name}-base = %{version}-%{release}
2501 Provides:       apache(mod_unique_id) = %{version}-%{release}
2502
2503 %description mod_unique_id
2504 This package contains the mod_unique_id. This module provides a magic
2505 token for each request which is guaranteed to be unique across "all"
2506 requests under very specific conditions. The unique identifier is even
2507 unique across multiple machines in a properly configured cluster of
2508 machines. The environment variable UNIQUE_ID is set to the identifier
2509 for each request. Unique identifiers are useful for various reasons
2510 which are beyond the scope of this document.
2511
2512 %description mod_unique_id -l pl.UTF-8
2513 Moduł nadaje każdemu zapytaniu token unikalny w ramach wszystkich
2514 zapytań, nawet w ramach poprawnie skonfigurowanego klastra z wielu
2515 maszyn. Moduł ustawia przy każdym zapytaniu zmienną środowiskową
2516 UNIQUE_ID.
2517
2518 %package mod_userdir
2519 Summary:        User-specific directories
2520 Summary(pl.UTF-8):      Katalogi specyficzne dla użytkowników
2521 Group:          Networking/Daemons/HTTP
2522 URL:            http://httpd.apache.org/docs/2.4/mod/mod_userdir.html
2523 Requires:       %{name}-base = %{version}-%{release}
2524 Requires:       %{name}-mod_authz_host = %{version}-%{release}
2525 Provides:       apache(mod_userdir) = %{version}-%{release}
2526
2527 %description mod_userdir
2528 This module allows user-specific directories to be accessed using the
2529 http://example.com/~user/ syntax.
2530
2531 %description mod_userdir -l pl.UTF-8
2532 Ten moduł pozwala na dostęp do katalogów specyficznych dla
2533 użytkowników przy użyciu składni http://example.com/~user/ .
2534
2535 %package mod_usertrack
2536 Summary:        Apache module for user tracking using cookies
2537 Summary(pl.UTF-8):      Moduł Apache'a służący do śledzenia "ciasteczek"
2538 Group:          Networking/Daemons/HTTP
2539 URL:            http://httpd.apache.org/docs/2.4/mod/mod_usertrack.html
2540 Requires:       %{name}-base = %{version}-%{release}
2541 Provides:       apache(mod_usertrack) = %{version}-%{release}
2542
2543 %description mod_usertrack
2544 This package contains the user tracking module which did its own
2545 logging using CookieLog directory. This module allow multiple log
2546 files.
2547
2548 %description mod_usertrack -l pl.UTF-8
2549 Ten pakiet zawiera moduł śledzący użytkowników zapisujący własny log
2550 przy użyciu katalogu CookieLog. Pozwala na użycie wielu plików logów.
2551
2552 %package mod_version
2553 Summary:        Version dependent configuration
2554 Summary(pl.UTF-8):      Konfiguracja zależna od wersji
2555 Group:          Networking/Daemons/HTTP
2556 URL:            http://httpd.apache.org/docs/2.4/mod/mod_version.html
2557 Requires:       %{name}-base = %{version}-%{release}
2558 Provides:       apache(mod_version) = %{version}-%{release}
2559
2560 %description mod_version
2561 This module is designed for the use in test suites and large networks
2562 which have to deal with different httpd versions and different
2563 configurations. It provides a new container -- <IfVersion>, which
2564 allows a flexible version checking including numeric comparisons and
2565 regular expressions.
2566
2567 %description mod_version -l pl.UTF-8
2568 Ten moduł jest przeznaczony do używania w zestawach testów i dużych
2569 sieciach, gdzie trzeba inaczej obsługiwać różne wersje httpd i różne
2570 konfiguracje. Udostępnia nowy kontener: <IfVersion>, umożliwiający
2571 elastyczne sprawdzanie wersji włącznie z porównaniami liczbowymi i
2572 wyrażeniami regularnymi.
2573
2574 %package mod_vhost_alias
2575 Summary:        Apache module for dynamically configured mass virtual hosting
2576 Summary(pl.UTF-8):      Moduł Apache'a dodający obsługę hostów wirtualnych
2577 Group:          Networking/Daemons/HTTP
2578 URL:            http://httpd.apache.org/docs/2.4/mod/mod_vhost_alias.html
2579 Requires:       %{name}-base = %{version}-%{release}
2580 Provides:       apache(mod_vhost_alias) = %{version}-%{release}
2581
2582 %description mod_vhost_alias
2583 This package contains the mod_vhost_alias. It provides support for
2584 dynamically configured mass virtual hosting.
2585
2586 %description mod_vhost_alias -l pl.UTF-8
2587 Moduł umożliwia na dynamiczne konfigurowanie masowej ilości serwerów
2588 wirtualnych.
2589
2590 %package mod_watchdog
2591 Summary:        Infrastructure for other modules to periodically run tasks
2592 Summary(pl.UTF-8):      Infrastruktura do cyklicznego uruchamiania zadań przez inne moduły
2593 Group:          Networking/Daemons/HTTP
2594 URL:            http://httpd.apache.org/docs/2.4/mod/mod_watchdog.html
2595 Requires:       %{name}-base = %{version}-%{release}
2596 Provides:       apache(mod_watchdog) = %{version}-%{release}
2597
2598 %description mod_watchdog
2599 mod_watchdog defines programmatic hooks for other modules to
2600 periodically run tasks. These modules can register handlers for
2601 mod_watchdog hooks.
2602
2603 Currently, the following modules in the Apache distribution use this
2604 functionality:
2605 - mod_heartbeat
2606 - mod_heartmonitor
2607
2608 %description mod_watchdog -l pl.UTF-8
2609 mod_watchdog definiuje zaczepienia programowe dla innych modułów,
2610 pozwalające na cykliczne uruchamianie zadań. Moduły te mogą
2611 rejestrować procedury obsługi zaczepień mod_watchdog.
2612
2613 Obecnie następujące moduły w dystrybucji Apache'a wykorzystują tę
2614 funkcjonalność:
2615 - mod_heartbeat
2616 - mod_heartmonitor
2617
2618 %package mod_xml2enc
2619 Summary:        Enhanced charset/internationalisation support for libxml2-based filter modules
2620 Summary(pl.UTF-8):      Rozszerzona obsługa zestawów znaków/umiędzynarodowienia dla modułów filtrów opartych na libxml2
2621 Group:          Networking/Daemons/HTTP
2622 URL:            http://httpd.apache.org/docs/2.4/mod/mod_xml2enc.html
2623 Requires:       %{name}-base = %{version}-%{release}
2624 Provides:       apache(mod_xml2enc) = %{version}-%{release}
2625
2626 %description mod_xml2enc
2627 This module provides enhanced internationalisation support for
2628 markup-aware filter modules such as mod_proxy_html. It can
2629 automatically detect the encoding of input data and ensure they are
2630 correctly processed by the libxml2 parser, including converting to
2631 Unicode (UTF-8) where necessary. It can also convert data to an
2632 encoding of choice after markup processing, and will ensure the
2633 correct charset value is set in the HTTP Content-Type header.
2634
2635 %description mod_xml2enc -l pl.UTF-8
2636 Ten moduł zapewnia rozszerzoną obsługę umiędzynarodowienia dla modułów
2637 filtrów uwzględniających znaczniki, takich jak mod_proxy_html. Potrafi
2638 automatycznie wykryć kodowanie danych wejściowych i zapewnić, że będą
2639 właściwie przetworzone przez analizator libxml2, włącznie z konwersją
2640 do Unicode (UTF-8) w razie potrzeby. Potrafi także przekonwertować
2641 dane po przetworzeniu znaczników do wybranego kodowania i zapewnić
2642 ustawienie właściwej wartości zestawu znaków w nagłówku HTTP
2643 Content-Type.
2644
2645 %package -n htpasswd-%{name}
2646 Summary:        Apache 2 htpasswd utility: manage user files for basic authentication
2647 Summary(pl.UTF-8):      Narzędzie htpasswd z Apache'a 2 do zarządzania plikami uwierzytelnienia basic
2648 Group:          Networking/Utilities
2649 Provides:       htpasswd
2650 Obsoletes:      htpasswd
2651
2652 %description -n htpasswd-%{name}
2653 htpasswd is used to create and update the flat-files used to store
2654 usernames and password for basic authentication of HTTP users. This
2655 package contains htpasswd from Apache 2; this version supports
2656 plaintext passwords and CRYPT (default), MD5 and SHA1 encryptions.
2657
2658 %description -n htpasswd-%{name} -l pl.UTF-8
2659 htpasswd służy do tworzenia i uaktualniania plików tekstowych
2660 służących do przechowywania nazw użytkowników i haseł do podstawowego
2661 uwierzytelnienia użytkowników HTTP. Ten pakiet zawiera htpasswd z
2662 Apache'a 2; ta wersja obsługuje hasła zapisane czystym tekstem oraz
2663 zakodowane algorytmami CRYPT (domyślnym), MD5 i SHA1.
2664
2665 %package dbmtools
2666 Summary:        Apache 2 tools for manipulating DBM files
2667 Summary(pl.UTF-8):      Narzędzia Apache'a 2 do obróbki plików DBM
2668 Group:          Networking/Utilities
2669 Requires:       %{name}-base = %{version}-%{release}
2670
2671 %description dbmtools
2672 Apache 2 tools for manipulating DBM files.
2673
2674 %description dbmtools -l pl.UTF-8
2675 Narzędzia Apache'a 2 do obróbki plików DBM.
2676
2677 %package cgi_test
2678 Summary:        cgi test/demo programs
2679 Summary(pl.UTF-8):      Programy testowe/przykładowe cgi
2680 Group:          Networking/Utilities
2681 Requires:       %{name}-base = %{version}-%{release}
2682 Requires:       filesystem >= 2.0-1
2683 BuildArch:      noarch
2684
2685 %description cgi_test
2686 Two cgi test/demo programs: test-cgi and print-env.
2687
2688 %description cgi_test -l pl.UTF-8
2689 Dwa programy testowe/przykładowe cgi: test-cgi and print-env.
2690
2691 %prep
2692 %setup -q -n httpd-%{version}
2693 %patch0 -p1
2694 %patch1 -p1
2695 %patch2 -p1
2696 %patch3 -p1
2697 %patch4 -p1
2698
2699 %patch7 -p1
2700 %patch8 -p1
2701 %patch9 -p3
2702 %patch10 -p1
2703
2704 %patch14 -p1
2705 %patch15 -p1
2706 %patch18 -p1
2707 %patch19 -p1
2708 %patch20 -p1
2709 %patch23 -p1
2710
2711 # ?
2712 #%patch25 -p1
2713 # ?
2714 #%patch26 -p1
2715 %patch29 -p1
2716
2717 # sanity check
2718 MODULES_API=`awk '/#define MODULE_MAGIC_NUMBER_MAJOR/ {print $3}' include/ap_mmn.h`
2719 if [ "$MODULES_API" != "%_apache_modules_api" ]; then
2720         echo "Set %%_apache_modules_api to $MODULES_API and rerun."
2721         exit 1
2722 fi
2723
2724 # fix libdir (at least in PLD layout; no need to care about other ones)
2725 sed -i -e 's,/lib$,/%{_lib},' config.layout
2726
2727 %build
2728 cp /usr/share/apr/build/apr_common.m4 build
2729 %{__libtoolize}
2730 %{__aclocal} -I build
2731 cp /usr/share/automake/config.* build
2732 %{__autoheader}
2733 %{__autoconf}
2734
2735 # from ./buildconf
2736 : fixing timestamps for mod_ssl sources
2737 cd modules/ssl
2738 touch ssl_expr_parse.y
2739 sleep 1
2740 touch ssl_expr_parse.c ssl_expr_parse.h ssl_expr_scan.l
2741 sleep 1
2742 touch ssl_expr_scan.c
2743 cd ../..
2744
2745 CPPFLAGS="-DMAX_SERVER_LIMIT=200000 -DBIG_SECURITY_HOLE=1"
2746 install -d build; cd build
2747 ../%configure \
2748         --enable-layout=PLD \
2749         --disable-v4-mapped \
2750         --enable-exception-hook \
2751         --enable-modules=all \
2752         --enable-mods-shared=all \
2753         --enable-auth-anon \
2754         --enable-auth-dbm \
2755         --enable-authn-dbd \
2756         --enable-authn-alias \
2757         %{?with_ldap:--enable-authnz-ldap} \
2758         --enable-authz-dbm \
2759         --enable-authz-owner \
2760         --enable-auth-digest \
2761         %{?with_bucketeer:--enable-bucketeer} \
2762         --enable-cache \
2763         --enable-disk-cache \
2764         --enable-file-cache \
2765         --enable-mem-cache \
2766         --enable-cern-meta \
2767         --enable-cgi \
2768         --enable-cgid \
2769         --enable-charset-lite \
2770         --enable-dbd \
2771         --enable-deflate \
2772         --enable-dumpio \
2773         --enable-case-filter \
2774         --enable-case-filter-in \
2775         --enable-dav \
2776         --enable-dav-fs \
2777         --enable-dav-lock \
2778         --enable-echo \
2779         --enable-ext-filter \
2780         --enable-expires \
2781         --enable-headers \
2782         --enable-http \
2783         %{__enable_disable http2} \
2784         --enable-ident \
2785         --enable-imagemap \
2786         --enable-info \
2787         %{?with_ldap:--enable-ldap} \
2788         --enable-log-forensic \
2789         --enable-logio \
2790         --enable-lua \
2791         --enable-mime-magic \
2792         --enable-mpms-shared=all \
2793 %ifarch %{ix86}
2794 %ifnarch i386 i486
2795         --enable-nonportable-atomics=yes \
2796 %endif
2797 %endif
2798         --enable-proxy \
2799         --enable-proxy-connect \
2800         --enable-proxy-ftp \
2801         --enable-proxy-http \
2802         --enable-proxy-http2 \
2803         --enable-proxy-ajp \
2804         --enable-proxy-balancer \
2805         --enable-proxy-fdpass \
2806         --enable-rewrite \
2807         --enable-so \
2808         --enable-speling \
2809         %{?with_ssl:--enable-ssl %{?with_distcache:--enable-distcache}} \
2810         --enable-suexec \
2811         --enable-systemd \
2812         --enable-unique-id \
2813         --enable-usertrack \
2814         --enable-vhost-alias \
2815         --with-apr=%{_bindir}/apr-1-config \
2816         --with-apr-util=%{_bindir}/apu-1-config \
2817         --with-lua=/usr \
2818         --with-pcre \
2819         --with-program-name=httpd \
2820         --with-suexec-bin=%{_sbindir}/suexec \
2821         --with-suexec-caller=http \
2822         --with-suexec-docroot=%{_datadir} \
2823         --with-suexec-logfile=/var/log/httpd/suexec_log \
2824         --with-suexec-uidmin=500 \
2825         --with-suexec-gidmin=500 \
2826         --with-suexec-umask=077 \
2827         --with-z=%{_prefix}
2828
2829 %{__make}
2830
2831 %install
2832 rm -rf $RPM_BUILD_ROOT
2833 install -d $RPM_BUILD_ROOT/etc/{logrotate.d,rc.d/init.d,sysconfig,systemd/system} \
2834         $RPM_BUILD_ROOT%{_var}/{log/{httpd,archive/httpd},{run,cache}/httpd,lock/mod_dav} \
2835         $RPM_BUILD_ROOT%{_var}/lib/httpd/md \
2836         $RPM_BUILD_ROOT%{_sysconfdir}/{webapps.d,conf.d,vhosts.d} \
2837         $RPM_BUILD_ROOT%{_datadir}/{cgi-bin,vhosts} \
2838         $RPM_BUILD_ROOT%{systemdtmpfilesdir} \
2839         $RPM_BUILD_ROOT%{systemdunitdir}
2840
2841 %{__make} -C build install \
2842         DESTDIR=$RPM_BUILD_ROOT
2843
2844 # clean "ccache" prefix. confuses other build systems (like php)
2845 %{__sed} -i -re '/^(CC|CPP|CXX)/ s/ccache //' $RPM_BUILD_ROOT%{_libdir}/%{name}/build/config_vars.mk
2846
2847 cp -p %{SOURCE31} $RPM_BUILD_ROOT%{systemdunitdir}/httpd.service
2848 ln -sr $RPM_BUILD_ROOT%{systemdunitdir}/httpd.service $RPM_BUILD_ROOT/etc/systemd/system/httpd.service
2849 ln -sr $RPM_BUILD_ROOT%{_libexecdir} $RPM_BUILD_ROOT%{_sysconfdir}/modules
2850 ln -sr $RPM_BUILD_ROOT%{_localstatedir}/run/httpd $RPM_BUILD_ROOT%{_sysconfdir}/run
2851 ln -sr $RPM_BUILD_ROOT%{_var}/log/httpd $RPM_BUILD_ROOT%{_sysconfdir}/logs
2852 ln -sr $RPM_BUILD_ROOT%{_var}/lib/httpd/md $RPM_BUILD_ROOT%{_sysconfdir}/md
2853
2854 # we have own apache.conf
2855 rm $RPM_BUILD_ROOT%{_sysconfdir}/httpd.conf
2856
2857 install -p %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/httpd
2858 cp -a %{SOURCE2} $RPM_BUILD_ROOT/etc/logrotate.d/httpd
2859 cp -a %{SOURCE3} $RPM_BUILD_ROOT/etc/sysconfig/httpd
2860
2861 touch $RPM_BUILD_ROOT/var/log/httpd/{access,error,agent,referer,suexec}_log
2862
2863 %if %{with ssl}
2864 install -d $RPM_BUILD_ROOT%{_sysconfdir}/ssl
2865 cp -a %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/ssl/server.crt
2866 cp -a %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/ssl/server.key
2867 %endif
2868
2869 cp -a %{SOURCE6} $RPM_BUILD_ROOT%{_sysconfdir}/apache.conf
2870
2871 CFG="$RPM_BUILD_ROOT%{_sysconfdir}/conf.d"
2872
2873 cp -a %{SOURCE7} $CFG/10_common.conf
2874 cp -a %{SOURCE23} $CFG/01_mod_mime.conf
2875 cp -a %{SOURCE24} $CFG/01_mod_authz_host.conf
2876 cp -a %{SOURCE25} $CFG/01_mod_cgid.conf
2877 cp -a %{SOURCE26} $CFG/01_mod_log_config.conf
2878 cp -a %{SOURCE27} $CFG/01_mod_mime_magic.conf
2879 cp -a %{SOURCE28} $CFG/01_mod_cache.conf
2880 cp -a %{SOURCE32} $CFG/01_mod_http2.conf
2881 cp -a %{SOURCE8} $CFG/20_mod_vhost_alias.conf
2882 cp -a %{SOURCE9} $CFG/25_mod_status.conf
2883 cp -a %{SOURCE10} $CFG/30_mod_proxy.conf
2884 cp -a %{SOURCE11} $CFG/35_mod_info.conf
2885 cp -a %{SOURCE12} $CFG/40_mod_ssl.conf
2886 cp -a %{SOURCE13} $CFG/45_mod_dav.conf
2887 cp -a %{SOURCE14} $CFG/59_mod_dir.conf
2888 cp -a %{SOURCE15} $CFG/13_mod_suexec.conf
2889 cp -a %{SOURCE16} $CFG/58_mod_deflate.conf
2890 cp -a %{SOURCE17} $CFG/57_mod_autoindex.conf
2891 cp -a %{SOURCE18} $CFG/30_errordocs.conf
2892 cp -a %{SOURCE19} $CFG/30_manual.conf
2893 cp -a %{SOURCE20} $CFG/16_mod_userdir.conf
2894 cp -a %{SOURCE21} $CFG/10_mpm.conf
2895 cp -a %{SOURCE22} $CFG/20_languages.conf
2896 cp -a %{SOURCE33} $CFG/60_mod_md.conf
2897
2898 cp -a %{SOURCE29} $RPM_BUILD_ROOT%{_sysconfdir}/vhosts.d/example.net.conf
2899
2900 cp -p %{SOURCE30} $RPM_BUILD_ROOT%{systemdtmpfilesdir}/%{name}.conf
2901
2902 modules="
2903         %{?with_bucketeer:bucketeer}
2904         access_compat
2905         actions
2906         alias
2907         allowmethods
2908         asis
2909         auth_basic
2910         auth_digest
2911         auth_form
2912         authn_anon
2913         authn_core
2914         authn_dbd
2915         authn_dbm
2916         authn_file
2917         authn_socache
2918         authnz_ldap
2919         authz_core
2920         authz_dbd
2921         authz_dbm
2922         authz_groupfile
2923         authz_owner
2924         authz_user
2925         brotli
2926         buffer
2927         case_filter
2928         case_filter_in
2929         cern_meta
2930         cgi
2931         charset_lite
2932         data
2933         dbd
2934         dialup
2935         dumpio
2936         echo
2937         env
2938         expires
2939         ext_filter
2940         file_cache
2941         filter
2942         headers
2943         heartbeat
2944         heartmonitor
2945         ident
2946         imagemap
2947         include
2948         lbmethod_bybusyness
2949         lbmethod_byrequests
2950         lbmethod_bytraffic
2951         lbmethod_heartbeat
2952         ldap
2953         log_debug
2954         log_forensic
2955         logio
2956         lua
2957         macro
2958         md
2959         negotiation
2960         ratelimit
2961         reflector
2962         remoteip
2963         reqtimeout
2964         request
2965         rewrite
2966         sed
2967         session
2968         session_cookie
2969         session_crypto
2970         session_dbd
2971         setenvif
2972         slotmem_plain
2973         slotmem_shm
2974         socache_dbm
2975         socache_memcache
2976         socache_redis
2977         socache_shmcb
2978         speling
2979         substitute
2980         systemd
2981         unique_id
2982         usertrack
2983         version
2984         watchdog
2985         xml2enc
2986 "
2987
2988 LoadModule() {
2989         local index=$1 module=$2 conffile
2990         conffile=${3:-$module}
2991         echo "LoadModule ${module}_module modules/mod_$module.so" > $CFG/${index}_mod_${conffile}.conf
2992 }
2993
2994 for module in $modules; do
2995         LoadModule 00 $module
2996 done
2997
2998 # anything in style dir not ending with .css is trash
2999 %{__rm} -r $RPM_BUILD_ROOT%{_datadir}/manual/style/{lang,latex,xsl}
3000 find $RPM_BUILD_ROOT%{_datadir}/manual/style -type f ! -name '*.css' -print0 | xargs -0r rm -f
3001
3002 # find manual files
3003 > manual.files
3004 cur=$(pwd)
3005 cd $RPM_BUILD_ROOT
3006 find ./%{_datadir}/manual -type d -printf "%%%%dir %{_datadir}/manual/%%P\n" >> "$cur/manual.files"
3007 find ./%{_datadir}/manual -type f -printf "%{_datadir}/manual/%%P\n" | sed -e '
3008 s/^.*\.\(de\|es\|fr\|ja\|ko\|ru\)\(\..*\)\?/%%lang(\1) &/
3009 s/^.*\.\(pt-br\)/%%lang(pt_BR) &/
3010 ' >> "$cur/manual.files"
3011 cd $cur
3012
3013 # htpasswd goes to %{_bindir}
3014 ln -sfr $RPM_BUILD_ROOT%{_bindir}/htpasswd $RPM_BUILD_ROOT%{_sbindir}
3015
3016 mv $RPM_BUILD_ROOT{%{_bindir},%{_sbindir}}/apxs
3017
3018 # cgi_test: create config file with ScriptAlias
3019 cat << 'EOF' > $CFG/09_cgi_test.conf
3020 ScriptAlias /cgi-bin/printenv %{_cgibindir}/printenv
3021 ScriptAlias /cgi-bin/test-cgi %{_cgibindir}/test-cgi
3022 EOF
3023
3024 # our suexec is patched to support php + fcgi + suexec with
3025 # virtual users when called as suexec.fcgi
3026 ln -sf suexec $RPM_BUILD_ROOT%{_sbindir}/suexec.fcgi
3027
3028 # no value
3029 %{__rm} $RPM_BUILD_ROOT%{_libexecdir}/build/config.nice
3030 %{__rm} $RPM_BUILD_ROOT%{_libexecdir}/*.exp
3031 %{__rm} $RPM_BUILD_ROOT%{_sysconfdir}/mime.types
3032 %{__rm} -r $RPM_BUILD_ROOT%{_sysconfdir}/{extra,original}
3033
3034 %clean
3035 rm -rf $RPM_BUILD_ROOT
3036
3037 %pre base
3038 %groupadd -g 51 http
3039 %useradd -u 51 -r -d /home/services/httpd -s /bin/false -c "HTTP User" -g http http
3040
3041 %pretrans base
3042 # upgrade to 2.4: handle $HTTPD_MPM from sysconfig
3043 if [ -f /etc/sysconfig/httpd ]; then
3044         MPM=$(grep ^HTTPD_MPM /etc/sysconfig/httpd | sed 's,HTTPD_MPM=,,;s,",,g')
3045         if [ -n "$MPM" ]; then
3046                 echo "LoadModule mpm_${MPM}_module      modules/mod_mpm_${MPM}.so" > /etc/httpd/conf.d/10_mpm.conf.rpmnew
3047                 cat /etc/httpd/conf.d/10_mpm.conf >> /etc/httpd/conf.d/10_mpm.conf.rpmnew
3048                 mv -f /etc/httpd/conf.d/10_mpm.conf.rpmnew /etc/httpd/conf.d/10_mpm.conf
3049                 sed -i -e 's,HTTPD_MPM.*,,g' /etc/sysconfig/httpd
3050         fi
3051 fi
3052
3053 exit 0
3054
3055 %post base
3056 /sbin/chkconfig --add httpd
3057 umask 137
3058 touch /var/log/httpd/{access,error,agent,referer}_log
3059 %systemd_post httpd.service
3060
3061 %preun base
3062 if [ "$1" = "0" ]; then
3063         %service httpd stop
3064         /sbin/chkconfig --del httpd
3065 fi
3066 %systemd_preun httpd.service
3067
3068 %postun base
3069 if [ "$1" = "0" ]; then
3070         %userremove http
3071         %groupremove http
3072 fi
3073 %systemd_reload
3074
3075 %triggerpostun base -- %{name}-base < 2.4.0
3076 #  < 2.2.22-2
3077 . /etc/sysconfig/httpd
3078 if [ -z "$HTTPD_CONF" ]; then
3079         echo 'HTTPD_CONF="/etc/httpd/apache.conf"' >> /etc/sysconfig/httpd
3080 fi
3081 %systemd_trigger httpd.service
3082
3083 # < 2.4.0
3084 cp -f /etc/httpd/apache.conf{,.rpmsave}
3085 sed -i -e '
3086         /^DefaultType/d
3087         /^Include / s,^Include ,IncludeOptional ,
3088         /^NameVirtualHost/d
3089         /^User/ s,^,LoadModule unixd_module modules/mod_unixd.so\n,
3090 ' /etc/httpd/apache.conf
3091 sed -i -e '
3092         s,^LockFile /var/run/httpd/accept.lock,Mutex file:/var/run/httpd/,g
3093 ' /etc/httpd/conf.d/10_mpm.conf
3094
3095 %triggerpostun mod_ssl -- %{name}-mod_ssl < 1:2.4.0
3096 cp -f /etc/httpd/conf.d/40_mod_ssl.conf{,.rpmsave}
3097 sed -i -e '
3098         /^SSLMutex/ s,^,#,
3099         /^NameVirtualHost/d
3100 ' /etc/httpd/conf.d/40_mod_ssl.conf
3101
3102 %posttrans base
3103 # restore lock which we disabled in pretrans
3104 mv -f /var/lock/subsys/httpd{.disabled,} 2>/dev/null
3105
3106 # minimizing apache restarts logics. we restart webserver:
3107 #
3108 # 1. at the end of transaction. (posttrans, feature from rpm 4.4.2)
3109 # 2. first install of module (post: $1 = 1)
3110 # 2. uninstall of module (postun: $1 == 0)
3111 #
3112 # the strict internal deps between apache modules and
3113 # main package are very important for all this to work.
3114
3115 # restart webserver at the end of transaction
3116 %service httpd restart
3117 %systemd_service_restart httpd.service
3118
3119 # macro called at module post scriptlet
3120 %define module_post \
3121 if [ "$1" = "1" ]; then \
3122         %service -q httpd restart \
3123         %systemd_service_restart httpd.service \
3124 fi
3125
3126 # macro called at module postun scriptlet
3127 %define module_postun \
3128 if [ "$1" = "0" ]; then \
3129         %service -q httpd restart \
3130         %systemd_service_restart httpd.service \
3131 fi
3132
3133 # it's sooo annoying to write them
3134 %define module_scripts() \
3135 %post %1 \
3136 %module_post \
3137 \
3138 %postun %1 \
3139 %module_postun
3140
3141 %module_scripts mod_access_compat
3142 %module_scripts mod_actions
3143 %module_scripts mod_alias
3144 %module_scripts mod_allowmethods
3145 %module_scripts mod_asis
3146 %module_scripts mod_auth_basic
3147 %module_scripts mod_auth_dbm
3148 %module_scripts mod_auth_digest
3149 %module_scripts mod_auth_form
3150 %module_scripts mod_authn_anon
3151 %module_scripts mod_authn_core
3152 %module_scripts mod_authn_dbd
3153 %module_scripts mod_authn_dbm
3154 %module_scripts mod_authn_file
3155 %module_scripts mod_authn_socache
3156 %module_scripts mod_authnz_ldap
3157 %module_scripts mod_authz_core
3158 %module_scripts mod_authz_dbd
3159 %module_scripts mod_authz_dbm
3160 %module_scripts mod_authz_groupfile
3161 %module_scripts mod_authz_host
3162 %module_scripts mod_authz_owner
3163 %module_scripts mod_authz_user
3164 %module_scripts mod_autoindex
3165 %module_scripts mod_brotli
3166 %module_scripts mod_bucketeer
3167 %module_scripts mod_buffer
3168 %module_scripts mod_cache
3169 %module_scripts mod_case_filter
3170 %module_scripts mod_case_filter_in
3171 %module_scripts mod_cern_meta
3172 %module_scripts mod_cgi
3173 %module_scripts mod_cgid
3174 %module_scripts mod_charset_lite
3175 %module_scripts mod_data
3176 %module_scripts mod_dav
3177 %module_scripts mod_dbd
3178 %module_scripts mod_deflate
3179 %module_scripts mod_dialup
3180 %module_scripts mod_dir
3181 %module_scripts mod_dumpio
3182 %module_scripts mod_echo
3183 %module_scripts mod_env
3184 %module_scripts mod_expires
3185 %module_scripts mod_ext_filter
3186 %module_scripts mod_file_cache
3187 %module_scripts mod_filter
3188 %module_scripts mod_headers
3189 %module_scripts mod_heartbeat
3190 %module_scripts mod_heartmonitor
3191 %module_scripts mod_http2
3192 %module_scripts mod_ident
3193 %module_scripts mod_imagemap
3194 %module_scripts mod_include
3195 %module_scripts mod_info
3196 %module_scripts mod_lbmethod_bybusyness
3197 %module_scripts mod_lbmethod_byrequests
3198 %module_scripts mod_lbmethod_bytraffic
3199 %module_scripts mod_lbmethod_heartbeat
3200 %module_scripts mod_ldap
3201 %module_scripts mod_log_config
3202 %module_scripts mod_log_debug
3203 %module_scripts mod_log_forensic
3204 %module_scripts mod_logio
3205 %module_scripts mod_lua
3206 %module_scripts mod_macro
3207 %module_scripts mod_md
3208 %module_scripts mod_mime
3209 %module_scripts mod_mime_magic
3210 %module_scripts mod_negotiation
3211 %module_scripts mod_proxy
3212 %module_scripts mod_ratelimit
3213 %module_scripts mod_reflector
3214 %module_scripts mod_remoteip
3215 %module_scripts mod_reqtimeout
3216 %module_scripts mod_request
3217 %module_scripts mod_rewrite
3218 %module_scripts mod_sed
3219 %module_scripts mod_session
3220 %module_scripts mod_session_cookie
3221 %module_scripts mod_session_crypto
3222 %module_scripts mod_session_dbd
3223 %module_scripts mod_setenvif
3224 %module_scripts mod_slotmem_plain
3225 %module_scripts mod_slotmem_shm
3226 %module_scripts mod_socache_dbm
3227 %module_scripts mod_socache_memcache
3228 %module_scripts mod_socache_redis
3229 %module_scripts mod_socache_shmcb
3230 %module_scripts mod_speling
3231 %module_scripts mod_ssl
3232 %module_scripts mod_status
3233 %module_scripts mod_substitute
3234 %module_scripts mod_unique_id
3235 %module_scripts mod_userdir
3236 %module_scripts mod_usertrack
3237 %module_scripts mod_version
3238 %module_scripts mod_vhost_alias
3239 %module_scripts mod_watchdog
3240 %module_scripts mod_xml2enc
3241 %module_scripts suexec
3242
3243 %post cgi_test
3244 if [ "$1" = "1" ]; then
3245         %service -q httpd reload
3246         %systemd_service_reload httpd.service
3247 fi
3248
3249 %postun cgi_test
3250 if [ "$1" = "0" ]; then
3251         %service -q httpd reload
3252         %systemd_service_reload httpd.service
3253 fi
3254
3255 %post errordocs
3256 if [ "$1" = "1" ]; then
3257         %service -q httpd reload
3258         %systemd_service_reload httpd.service
3259 fi
3260
3261 %postun errordocs
3262 if [ "$1" = "0" ]; then
3263         %service -q httpd reload
3264         %systemd_service_reload httpd.service
3265 fi
3266
3267 %files
3268 %defattr(644,root,root,755)
3269
3270 %files base
3271 %defattr(644,root,root,755)
3272 %doc ABOUT_APACHE CHANGES README
3273 %doc docs/conf/mime.types
3274 %attr(754,root,root) /etc/rc.d/init.d/httpd
3275 %attr(751,root,root) %dir %{_sysconfdir}
3276 %{_sysconfdir}/modules
3277 %{_sysconfdir}/run
3278 %{_sysconfdir}/logs
3279 %attr(750,root,root) %dir %{_sysconfdir}/conf.d
3280 %attr(750,root,root) %dir %{_sysconfdir}/vhosts.d
3281 %attr(750,root,root) %dir %{_sysconfdir}/webapps.d
3282 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/apache.conf
3283 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_common.conf
3284 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mpm.conf
3285 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_systemd.conf
3286 %attr(640,root,root) %config(noreplace,missingok) %verify(not md5 mtime size) %{_sysconfdir}/vhosts.d/example.net.conf
3287 %attr(640,root,root) %{_sysconfdir}/magic
3288 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/httpd
3289 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/httpd
3290
3291 %dir %{_libexecdir}
3292
3293 %attr(755,root,root) %{_sbindir}/checkgid
3294 %attr(755,root,root) %{_sbindir}/httpd
3295
3296 %dir %attr(710,root,http) /var/lib/httpd
3297 %dir %attr(770,root,http) /var/run/httpd
3298 %dir %attr(770,root,http) /var/cache/httpd
3299
3300 %{systemdtmpfilesdir}/%{name}.conf
3301 %{systemdunitdir}/httpd.service
3302 %config(noreplace) %verify(not md5 mtime size) /etc/systemd/system/httpd.service
3303
3304 %{_mandir}/man8/httpd.8*
3305
3306 %attr(2751,root,logs) %dir /var/log/httpd
3307 %attr(2750,root,logs) %dir /var/log/archive/httpd
3308 %attr(640,root,logs) %ghost /var/log/httpd/*
3309
3310 %dir %{_datadir}
3311
3312 %dir %{_datadir}/cgi-bin
3313 %dir %{_datadir}/html
3314 %dir %{_datadir}/vhosts
3315 # do not adapter here, %%{_datadir} != /usr/share here
3316 %{_datadir}/icons
3317 %attr(755,root,root) %{_libexecdir}/mod_mpm_event.so
3318 %attr(755,root,root) %{_libexecdir}/mod_mpm_prefork.so
3319 %attr(755,root,root) %{_libexecdir}/mod_mpm_worker.so
3320 %attr(755,root,root) %{_libexecdir}/mod_systemd.so
3321 %attr(755,root,root) %{_libexecdir}/mod_unixd.so
3322
3323 %files doc -f manual.files
3324 %defattr(644,root,root,755)
3325 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_manual.conf
3326
3327 %files errordocs
3328 %defattr(644,root,root,755)
3329 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_errordocs.conf
3330 %{_datadir}/error
3331
3332 %files suexec
3333 %defattr(644,root,root,755)
3334 %attr(4755,root,root) %{_sbindir}/suexec
3335 %attr(755,root,root) %{_sbindir}/suexec.fcgi
3336 %attr(755,root,root) %{_libexecdir}/mod_suexec.so
3337 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_suexec.conf
3338 %{_mandir}/man8/suexec.8*
3339
3340 %files index
3341 %defattr(644,root,root,755)
3342 %config(noreplace,missingok) %{_datadir}/html/index.html*
3343
3344 %files tools
3345 %defattr(644,root,root,755)
3346 %attr(755,root,root) %{_bindir}/ab
3347 %attr(755,root,root) %{_sbindir}/apachectl
3348 %attr(755,root,root) %{_bindir}/htdigest
3349 %attr(755,root,root) %{_bindir}/logresolve
3350 %attr(755,root,root) %{_sbindir}/rotatelogs
3351 %{_mandir}/man1/ab.1*
3352 %{_mandir}/man8/apachectl.8*
3353 %{_mandir}/man1/htdigest.1*
3354 %{_mandir}/man1/logresolve.1*
3355 %{_mandir}/man8/rotatelogs.8*
3356
3357 %files devel
3358 %defattr(644,root,root,755)
3359 %attr(755,root,root) %{_sbindir}/apxs
3360 %attr(755,root,root) %{_sbindir}/envvars*
3361 %dir %{_libexecdir}
3362 %dir %{_libexecdir}/build
3363 %{_libexecdir}/build/[lprs]*.mk
3364 %{_libexecdir}/build/config_vars.mk
3365 %attr(755,root,root) %{_libexecdir}/build/*.sh
3366 %{_includedir}
3367 %{_mandir}/man1/apxs.1*
3368
3369 %files mod_access_compat
3370 %defattr(644,root,root,755)
3371 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_access_compat.conf
3372 %attr(755,root,root) %{_libexecdir}/mod_access_compat.so
3373
3374 %files mod_actions
3375 %defattr(644,root,root,755)
3376 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_actions.conf
3377 %attr(755,root,root) %{_libexecdir}/mod_actions.so
3378
3379 %files mod_alias
3380 %defattr(644,root,root,755)
3381 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_alias.conf
3382 %attr(755,root,root) %{_libexecdir}/mod_alias.so
3383
3384 %files mod_allowmethods
3385 %defattr(644,root,root,755)
3386 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_allowmethods.conf
3387 %attr(755,root,root) %{_libexecdir}/mod_allowmethods.so
3388
3389 %files mod_asis
3390 %defattr(644,root,root,755)
3391 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_asis.conf
3392 %attr(755,root,root) %{_libexecdir}/mod_asis.so
3393
3394 %files mod_auth
3395 %defattr(644,root,root,755)
3396
3397 %files mod_auth_basic
3398 %defattr(644,root,root,755)
3399 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_auth_basic.conf
3400 %attr(755,root,root) %{_libexecdir}/mod_auth_basic.so
3401
3402 %files mod_auth_dbm
3403 %defattr(644,root,root,755)
3404
3405 %files mod_auth_digest
3406 %defattr(644,root,root,755)
3407 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_auth_digest.conf
3408 %attr(755,root,root) %{_libexecdir}/mod_auth_digest.so
3409
3410 %files mod_auth_form
3411 %defattr(644,root,root,755)
3412 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_auth_form.conf
3413 %attr(755,root,root) %{_libexecdir}/mod_auth_form.so
3414
3415 %files mod_authn_core
3416 %defattr(644,root,root,755)
3417 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authn_core.conf
3418 %attr(755,root,root) %{_libexecdir}/mod_authn_core.so
3419
3420 %files mod_authn_anon
3421 %defattr(644,root,root,755)
3422 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authn_anon.conf
3423 %attr(755,root,root) %{_libexecdir}/mod_authn_anon.so
3424
3425 %files mod_authn_dbd
3426 %defattr(644,root,root,755)
3427 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authn_dbd.conf
3428 %attr(755,root,root) %{_libexecdir}/mod_authn_dbd.so
3429
3430 %files mod_authn_dbm
3431 %defattr(644,root,root,755)
3432 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authn_dbm.conf
3433 %attr(755,root,root) %{_libexecdir}/mod_authn_dbm.so
3434
3435 %files mod_authn_file
3436 %defattr(644,root,root,755)
3437 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authn_file.conf
3438 %attr(755,root,root) %{_libexecdir}/mod_authn_file.so
3439
3440 %files mod_authn_socache
3441 %defattr(644,root,root,755)
3442 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authn_socache.conf
3443 %attr(755,root,root) %{_libexecdir}/mod_authn_socache.so
3444
3445 %if %{with ldap}
3446 %files mod_authnz_ldap
3447 %defattr(644,root,root,755)
3448 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authnz_ldap.conf
3449 %attr(755,root,root) %{_libexecdir}/mod_authnz_ldap.so
3450 %endif
3451
3452 %files mod_authz_core
3453 %defattr(644,root,root,755)
3454 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authz_core.conf
3455 %attr(755,root,root) %{_libexecdir}/mod_authz_core.so
3456
3457 %files mod_authz_dbd
3458 %defattr(644,root,root,755)
3459 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authz_dbd.conf
3460 %attr(755,root,root) %{_libexecdir}/mod_authz_dbd.so
3461
3462 %files mod_authz_dbm
3463 %defattr(644,root,root,755)
3464 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authz_dbm.conf
3465 %attr(755,root,root) %{_libexecdir}/mod_authz_dbm.so
3466
3467 %files mod_authz_groupfile
3468 %defattr(644,root,root,755)
3469 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authz_groupfile.conf
3470 %attr(755,root,root) %{_libexecdir}/mod_authz_groupfile.so
3471
3472 %files mod_authz_host
3473 %defattr(644,root,root,755)
3474 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authz_host.conf
3475 %attr(755,root,root) %{_libexecdir}/mod_authz_host.so
3476
3477 %files mod_authz_owner
3478 %defattr(644,root,root,755)
3479 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authz_owner.conf
3480 %attr(755,root,root) %{_libexecdir}/mod_authz_owner.so
3481
3482 %files mod_authz_user
3483 %defattr(644,root,root,755)
3484 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_authz_user.conf
3485 %attr(755,root,root) %{_libexecdir}/mod_authz_user.so
3486
3487 %files mod_autoindex
3488 %defattr(644,root,root,755)
3489 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_autoindex.conf
3490 %attr(755,root,root) %{_libexecdir}/mod_autoindex.so
3491
3492 %files mod_brotli
3493 %defattr(644,root,root,755)
3494 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_brotli.conf
3495 %attr(755,root,root) %{_libexecdir}/mod_brotli.so
3496
3497 %if %{with bucketeer}
3498 %files mod_bucketeer
3499 %defattr(644,root,root,755)
3500 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_bucketeer.conf
3501 %attr(755,root,root) %{_libexecdir}/mod_bucketeer.so
3502 %endif
3503
3504 %files mod_buffer
3505 %defattr(644,root,root,755)
3506 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_buffer.conf
3507 %attr(755,root,root) %{_libexecdir}/mod_buffer.so
3508
3509 %files mod_cache
3510 %defattr(644,root,root,755)
3511 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_cache.conf
3512 %attr(755,root,root) %{_sbindir}/htcacheclean
3513 %attr(755,root,root) %{_libexecdir}/mod_cache.so
3514 %attr(755,root,root) %{_libexecdir}/mod_cache_disk.so
3515 %attr(755,root,root) %{_libexecdir}/mod_cache_socache.so
3516 %{_mandir}/man8/htcacheclean.8*
3517
3518 %files mod_case_filter
3519 %defattr(644,root,root,755)
3520 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_case_filter.conf
3521 %attr(755,root,root) %{_libexecdir}/mod_case_filter.so
3522
3523 %files mod_case_filter_in
3524 %defattr(644,root,root,755)
3525 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_case_filter_in.conf
3526 %attr(755,root,root) %{_libexecdir}/mod_case_filter_in.so
3527
3528 %files mod_cern_meta
3529 %defattr(644,root,root,755)
3530 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_cern_meta.conf
3531 %attr(755,root,root) %{_libexecdir}/mod_cern_meta.so
3532
3533 %files mod_cgi
3534 %defattr(644,root,root,755)
3535 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_cgi.conf
3536 %attr(755,root,root) %{_libexecdir}/mod_cgi.so
3537
3538 %files mod_cgid
3539 %defattr(644,root,root,755)
3540 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_cgid.conf
3541 %attr(755,root,root) %{_libexecdir}/mod_cgid.so
3542
3543 %files mod_charset_lite
3544 %defattr(644,root,root,755)
3545 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_charset_lite.conf
3546 %attr(755,root,root) %{_libexecdir}/mod_charset_lite.so
3547
3548 %files mod_data
3549 %defattr(644,root,root,755)
3550 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_data.conf
3551 %attr(755,root,root) %{_libexecdir}/mod_data.so
3552
3553 %files mod_dav
3554 %defattr(644,root,root,755)
3555 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_dav.conf
3556 %attr(755,root,root) %{_libexecdir}/mod_dav*.so
3557 %dir %attr(770,root,http) /var/lock/mod_dav
3558
3559 %files mod_dbd
3560 %defattr(644,root,root,755)
3561 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_dbd.conf
3562 %attr(755,root,root) %{_libexecdir}/mod_dbd.so
3563
3564 %files mod_deflate
3565 %defattr(644,root,root,755)
3566 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_deflate.conf
3567 %attr(755,root,root) %{_libexecdir}/mod_deflate.so
3568
3569 %files mod_dialup
3570 %defattr(644,root,root,755)
3571 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_dialup.conf
3572 %attr(755,root,root) %{_libexecdir}/mod_dialup.so
3573
3574 %files mod_dir
3575 %defattr(644,root,root,755)
3576 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_dir.conf
3577 %attr(755,root,root) %{_libexecdir}/mod_dir.so
3578
3579 %files mod_dumpio
3580 %defattr(644,root,root,755)
3581 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_dumpio.conf
3582 %attr(755,root,root) %{_libexecdir}/mod_dumpio.so
3583
3584 %files mod_echo
3585 %defattr(644,root,root,755)
3586 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_echo.conf
3587 %attr(755,root,root) %{_libexecdir}/mod_echo.so
3588
3589 %files mod_env
3590 %defattr(644,root,root,755)
3591 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_env.conf
3592 %attr(755,root,root) %{_libexecdir}/mod_env.so
3593
3594 %files mod_expires
3595 %defattr(644,root,root,755)
3596 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_expires.conf
3597 %attr(755,root,root) %{_libexecdir}/mod_expires.so
3598
3599 %files mod_ext_filter
3600 %defattr(644,root,root,755)
3601 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_ext_filter.conf
3602 %attr(755,root,root) %{_libexecdir}/mod_ext_filter.so
3603
3604 %files mod_file_cache
3605 %defattr(644,root,root,755)
3606 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_file_cache.conf
3607 %attr(755,root,root) %{_libexecdir}/mod_file_cache.so
3608
3609 %files mod_filter
3610 %defattr(644,root,root,755)
3611 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_filter.conf
3612 %attr(755,root,root) %{_libexecdir}/mod_filter.so
3613
3614 %files mod_headers
3615 %defattr(644,root,root,755)
3616 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_headers.conf
3617 %attr(755,root,root) %{_libexecdir}/mod_headers.so
3618
3619 %files mod_heartbeat
3620 %defattr(644,root,root,755)
3621 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_heartbeat.conf
3622 %attr(755,root,root) %{_libexecdir}/mod_heartbeat.so
3623
3624 %files mod_heartmonitor
3625 %defattr(644,root,root,755)
3626 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_heartmonitor.conf
3627 %attr(755,root,root) %{_libexecdir}/mod_heartmonitor.so
3628
3629 %if %{with http2}
3630 %files mod_http2
3631 %defattr(644,root,root,755)
3632 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_http2.conf
3633 %attr(755,root,root) %{_libexecdir}/mod_http2.so
3634 %endif
3635
3636 %files mod_ident
3637 %defattr(644,root,root,755)
3638 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_ident.conf
3639 %attr(755,root,root) %{_libexecdir}/mod_ident.so
3640
3641 %files mod_imagemap
3642 %defattr(644,root,root,755)
3643 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_imagemap.conf
3644 %attr(755,root,root) %{_libexecdir}/mod_imagemap.so
3645
3646 %files mod_include
3647 %defattr(644,root,root,755)
3648 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_include.conf
3649 %attr(755,root,root) %{_libexecdir}/mod_include.so
3650
3651 %files mod_info
3652 %defattr(644,root,root,755)
3653 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_info.conf
3654 %attr(755,root,root) %{_libexecdir}/mod_info.so
3655
3656 %files mod_lbmethod_bybusyness
3657 %defattr(644,root,root,755)
3658 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_lbmethod_bybusyness.conf
3659 %attr(755,root,root) %{_libexecdir}/mod_lbmethod_bybusyness.so
3660
3661 %files mod_lbmethod_byrequests
3662 %defattr(644,root,root,755)
3663 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_lbmethod_byrequests.conf
3664 %attr(755,root,root) %{_libexecdir}/mod_lbmethod_byrequests.so
3665
3666 %files mod_lbmethod_bytraffic
3667 %defattr(644,root,root,755)
3668 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_lbmethod_bytraffic.conf
3669 %attr(755,root,root) %{_libexecdir}/mod_lbmethod_bytraffic.so
3670
3671 %files mod_lbmethod_heartbeat
3672 %defattr(644,root,root,755)
3673 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_lbmethod_heartbeat.conf
3674 %attr(755,root,root) %{_libexecdir}/mod_lbmethod_heartbeat.so
3675
3676 %if %{with ldap}
3677 %files mod_ldap
3678 %defattr(644,root,root,755)
3679 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_ldap.conf
3680 %attr(755,root,root) %{_libexecdir}/mod_ldap.so
3681 %endif
3682
3683 %files mod_log_config
3684 %defattr(644,root,root,755)
3685 %attr(755,root,root) %{_libexecdir}/mod_log_config.so
3686 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_log_config.conf
3687
3688 %files mod_log_debug
3689 %defattr(644,root,root,755)
3690 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_log_debug.conf
3691 %attr(755,root,root) %{_libexecdir}/mod_log_debug.so
3692
3693 %files mod_log_forensic
3694 %defattr(644,root,root,755)
3695 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_log_forensic.conf
3696 %attr(755,root,root) %{_libexecdir}/mod_log_forensic.so
3697
3698 %files mod_logio
3699 %defattr(644,root,root,755)
3700 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_logio.conf
3701 %attr(755,root,root) %{_libexecdir}/mod_logio.so
3702
3703 %files mod_lua
3704 %defattr(644,root,root,755)
3705 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_lua.conf
3706 %attr(755,root,root) %{_libexecdir}/mod_lua.so
3707
3708 %files mod_macro
3709 %defattr(644,root,root,755)
3710 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_macro.conf
3711 %attr(755,root,root) %{_libexecdir}/mod_macro.so
3712
3713 %files mod_md
3714 %defattr(644,root,root,755)
3715 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_md.conf
3716 %attr(755,root,root) %{_libexecdir}/mod_md.so
3717 %attr(710,root,http) %dir /var/lib/httpd/md
3718 %{_sysconfdir}/md
3719
3720 %files mod_mime
3721 %defattr(644,root,root,755)
3722 %attr(755,root,root) %{_libexecdir}/mod_mime.so
3723 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_mime.conf
3724
3725 %files mod_mime_magic
3726 %defattr(644,root,root,755)
3727 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_mime_magic.conf
3728 %attr(755,root,root) %{_libexecdir}/mod_mime_magic.so
3729
3730 %files mod_negotiation
3731 %defattr(644,root,root,755)
3732 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_negotiation.conf
3733 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_languages.conf
3734 %attr(755,root,root) %{_libexecdir}/mod_negotiation.so
3735
3736 %files mod_proxy
3737 %defattr(644,root,root,755)
3738 %attr(755,root,root) %{_sbindir}/fcgistarter
3739 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_proxy.conf
3740 %attr(755,root,root) %{_libexecdir}/mod_proxy_ajp.so
3741 %attr(755,root,root) %{_libexecdir}/mod_proxy_balancer.so
3742 %attr(755,root,root) %{_libexecdir}/mod_proxy_connect.so
3743 %attr(755,root,root) %{_libexecdir}/mod_proxy_express.so
3744 %attr(755,root,root) %{_libexecdir}/mod_proxy_fcgi.so
3745 %attr(755,root,root) %{_libexecdir}/mod_proxy_fdpass.so
3746 %attr(755,root,root) %{_libexecdir}/mod_proxy_ftp.so
3747 %attr(755,root,root) %{_libexecdir}/mod_proxy_hcheck.so
3748 %attr(755,root,root) %{_libexecdir}/mod_proxy_html.so
3749 %attr(755,root,root) %{_libexecdir}/mod_proxy_http.so
3750 %attr(755,root,root) %{_libexecdir}/mod_proxy_http2.so
3751 %attr(755,root,root) %{_libexecdir}/mod_proxy_scgi.so
3752 %attr(755,root,root) %{_libexecdir}/mod_proxy_uwsgi.so
3753 %attr(755,root,root) %{_libexecdir}/mod_proxy_wstunnel.so
3754 %attr(755,root,root) %{_libexecdir}/mod_proxy.so
3755 %{_mandir}/man8/fcgistarter.8*
3756
3757 %files mod_ratelimit
3758 %defattr(644,root,root,755)
3759 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_ratelimit.conf
3760 %attr(755,root,root) %{_libexecdir}/mod_ratelimit.so
3761
3762 %files mod_reflector
3763 %defattr(644,root,root,755)
3764 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_reflector.conf
3765 %attr(755,root,root) %{_libexecdir}/mod_reflector.so
3766
3767 %files mod_remoteip
3768 %defattr(644,root,root,755)
3769 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_remoteip.conf
3770 %attr(755,root,root) %{_libexecdir}/mod_remoteip.so
3771
3772 %files mod_reqtimeout
3773 %defattr(644,root,root,755)
3774 %attr(755,root,root) %{_libexecdir}/mod_reqtimeout.so
3775 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_reqtimeout.conf
3776
3777 %files mod_request
3778 %defattr(644,root,root,755)
3779 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_request.conf
3780 %attr(755,root,root) %{_libexecdir}/mod_request.so
3781
3782 %files mod_rewrite
3783 %defattr(644,root,root,755)
3784 %attr(755,root,root) %{_bindir}/httxt2dbm
3785 %attr(755,root,root) %{_libexecdir}/mod_rewrite.so
3786 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_rewrite.conf
3787 %{_mandir}/man1/httxt2dbm.1*
3788
3789 %files mod_sed
3790 %defattr(644,root,root,755)
3791 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_sed.conf
3792 %attr(755,root,root) %{_libexecdir}/mod_sed.so
3793
3794 %files mod_session
3795 %defattr(644,root,root,755)
3796 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_session.conf
3797 %attr(755,root,root) %{_libexecdir}/mod_session.so
3798
3799 %files mod_session_cookie
3800 %defattr(644,root,root,755)
3801 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_session_cookie.conf
3802 %attr(755,root,root) %{_libexecdir}/mod_session_cookie.so
3803
3804 %files mod_session_crypto
3805 %defattr(644,root,root,755)
3806 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_session_crypto.conf
3807 %attr(755,root,root) %{_libexecdir}/mod_session_crypto.so
3808
3809 %files mod_session_dbd
3810 %defattr(644,root,root,755)
3811 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_session_dbd.conf
3812 %attr(755,root,root) %{_libexecdir}/mod_session_dbd.so
3813
3814 %files mod_setenvif
3815 %defattr(644,root,root,755)
3816 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_setenvif.conf
3817 %attr(755,root,root) %{_libexecdir}/mod_setenvif.so
3818
3819 %files mod_slotmem_plain
3820 %defattr(644,root,root,755)
3821 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_slotmem_plain.conf
3822 %attr(755,root,root) %{_libexecdir}/mod_slotmem_plain.so
3823
3824 %files mod_slotmem_shm
3825 %defattr(644,root,root,755)
3826 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_slotmem_shm.conf
3827 %attr(755,root,root) %{_libexecdir}/mod_slotmem_shm.so
3828
3829 %files mod_socache_dbm
3830 %defattr(644,root,root,755)
3831 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_socache_dbm.conf
3832 %attr(755,root,root) %{_libexecdir}/mod_socache_dbm.so
3833
3834 %files mod_socache_memcache
3835 %defattr(644,root,root,755)
3836 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_socache_memcache.conf
3837 %attr(755,root,root) %{_libexecdir}/mod_socache_memcache.so
3838
3839 %files mod_socache_redis
3840 %defattr(644,root,root,755)
3841 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_socache_redis.conf
3842 %attr(755,root,root) %{_libexecdir}/mod_socache_redis.so
3843
3844 %files mod_socache_shmcb
3845 %defattr(644,root,root,755)
3846 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_socache_shmcb.conf
3847 %attr(755,root,root) %{_libexecdir}/mod_socache_shmcb.so
3848
3849 %files mod_speling
3850 %defattr(644,root,root,755)
3851 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_speling.conf
3852 %attr(755,root,root) %{_libexecdir}/mod_speling.so
3853
3854 %if %{with ssl}
3855 %files mod_ssl
3856 %defattr(644,root,root,755)
3857 %attr(750,root,root) %dir %{_sysconfdir}/ssl
3858 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/ssl/server.*
3859 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_ssl.conf
3860 %attr(755,root,root) %{_libexecdir}/mod_ssl.so
3861 %endif
3862
3863 %files mod_status
3864 %defattr(644,root,root,755)
3865 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_status.conf
3866 %attr(755,root,root) %{_libexecdir}/mod_status.so
3867
3868 %files mod_substitute
3869 %defattr(644,root,root,755)
3870 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_substitute.conf
3871 %attr(755,root,root) %{_libexecdir}/mod_substitute.so
3872
3873 %files mod_unique_id
3874 %defattr(644,root,root,755)
3875 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_unique_id.conf
3876 %attr(755,root,root) %{_libexecdir}/mod_unique_id.so
3877
3878 %files mod_userdir
3879 %defattr(644,root,root,755)
3880 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_userdir.conf
3881 %attr(755,root,root) %{_libexecdir}/mod_userdir.so
3882
3883 %files mod_usertrack
3884 %defattr(644,root,root,755)
3885 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_usertrack.conf
3886 %attr(755,root,root) %{_libexecdir}/mod_usertrack.so
3887
3888 %files mod_version
3889 %defattr(644,root,root,755)
3890 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_version.conf
3891 %attr(755,root,root) %{_libexecdir}/mod_version.so
3892
3893 %files mod_vhost_alias
3894 %defattr(644,root,root,755)
3895 %attr(755,root,root) %{_libexecdir}/mod_vhost_alias.so
3896 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_vhost_alias.conf
3897
3898 %files mod_watchdog
3899 %defattr(644,root,root,755)
3900 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_watchdog.conf
3901 %attr(755,root,root) %{_libexecdir}/mod_watchdog.so
3902
3903 %files mod_xml2enc
3904 %defattr(644,root,root,755)
3905 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_mod_xml2enc.conf
3906 %attr(755,root,root) %{_libexecdir}/mod_xml2enc.so
3907
3908 %files -n htpasswd-%{name}
3909 %defattr(644,root,root,755)
3910 %attr(755,root,root) %{_bindir}/htpasswd
3911 %attr(755,root,root) %{_sbindir}/htpasswd
3912 %{_mandir}/man1/htpasswd.1*
3913
3914 %files dbmtools
3915 %defattr(644,root,root,755)
3916 %attr(755,root,root) %{_bindir}/dbmmanage
3917 %attr(755,root,root) %{_bindir}/htdbm
3918 %{_mandir}/man1/dbmmanage.1*
3919 %{_mandir}/man1/htdbm.1*
3920
3921 %files cgi_test
3922 %defattr(644,root,root,755)
3923 %dir %{_cgibindir}
3924 %attr(755,root,root) %{_cgibindir}/*
3925 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*_cgi_test.conf
This page took 0.630152 seconds and 3 git commands to generate.