Changes of Revision 59
[-] | Changed | nginx.spec |
x 1
2 %define nginx_confdir %{_sysconfdir}/nginx 3 %define nginx_datadir %{_datadir}/nginx 4 %define nginx_webroot %{nginx_datadir}/html 5 + 6 %define rtmp_ext nginx-rtmp-module 7 %define rtmp_ext_version 1.1.5 8 %define rtmp %{rtmp_ext}-%{rtmp_ext_version} 9
10 %define with_rtmp_ext 1 11 12 %define nps_version 1.9.32.2 13 +%define slowfs_version 1.5 14 15 %define openssl_version 1.0.1j 16 17
18 Provides: webserver 19 20 21 -BuildRequires: pcre-devel, zlib-devel, openssl-devel, perl(ExtUtils::Embed), libxm2-devel, libxslt-devel 22 +BuildRequires: pcre-devel, zlib-devel, openssl-devel, perl(ExtUtils::Embed), libxml2-devel, libxslt-devel 23 Requires: pcre, zlib, openssl, libxml2, libxslt 24 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) 25 Requires(pre): shadow-utils 26
27 Source5: nginx-upstream-fair.tgz 28 Source6: upstream-fair.conf 29 Source7: %{name}.sysconfig 30 -Source8: ngx_slowfs_cache-1.5.tar.gz 31 +Source8: ngx_slowfs_cache-%{slowfs_version}.tar.gz 32 Source9: Nginx-limit-traffic-rate-module.tar.gz 33 Source10: %{rtmp}.tar.gz 34 Source11: nginx_upstream_check_module-master.tar.gz 35
36 Source105: ssl-ciphersample 37 Source106: pagespeed.conf 38 39 -# removes -Werror in upstream build scripts. -Werror conflicts with 40 -# -D_FORTIFY_SOURCE=2 causing warnings to turn into errors. 41 Patch0: nginx-auto-cc-gcc.patch 42 - 43 -# configuration patch to match all the Fedora paths for logs, pid files 44 -# etc. 45 Patch1: nginx-conf-0.7.x.patch 46 Patch2: check_1.7.5+.patch 47 Patch3: ngx-detect-heartbleed.patch 48
49 Nginx [engine x] is an HTTP(S) server, HTTP(S) reverse proxy and IMAP/POP3 50 proxy server written by Igor Sysoev. 51 52 -One third party module, nginx-upstream-fair, has been added. 53 +Several 3rd Party Extensions added 54 55 %prep 56 %setup -q 57 |