675c6e
%global  _hardened_build     1
675c6e
%global  nginx_user          nginx
675c6e
675c6e
# Disable strict symbol checks in the link editor.
675c6e
# See: https://src.fedoraproject.org/rpms/redhat-rpm-config/c/078af19
675c6e
%undefine _strict_symbol_defs_build
675c6e
675c6e
%global with_gperftools 0
675c6e
675c6e
%bcond_with geoip
675c6e
675c6e
675c6e
%global with_aio 1
675c6e
675c6e
%if 0%{?fedora} > 22
675c6e
%global with_mailcap_mimetypes 1
675c6e
%endif
675c6e
675c6e
Name:              nginx
675c6e
Epoch:             1
675c6e
Version:           1.16.1
283bfd
Release:           2%{?dist}.1
675c6e
675c6e
Summary:           A high performance web server and reverse proxy server
675c6e
Group:             System Environment/Daemons
675c6e
# BSD License (two clause)
675c6e
# http://www.freebsd.org/copyright/freebsd-license.html
675c6e
License:           BSD
675c6e
URL:               http://nginx.org/
675c6e
675c6e
Source0:           https://nginx.org/download/nginx-%{version}.tar.gz
675c6e
Source10:          nginx.service
675c6e
Source11:          nginx.logrotate
675c6e
Source12:          nginx.conf
675c6e
Source13:          nginx-upgrade
675c6e
Source14:          nginx-upgrade.8
675c6e
Source100:         index.html
675c6e
Source101:         poweredby.png
675c6e
Source102:         nginx-logo.png
675c6e
Source103:         404.html
675c6e
Source104:         50x.html
675c6e
Source200:         README.dynamic
675c6e
Source210:         UPGRADE-NOTES-1.6-to-1.10
675c6e
675c6e
# removes -Werror in upstream build scripts.  -Werror conflicts with
675c6e
# -D_FORTIFY_SOURCE=2 causing warnings to turn into errors.
675c6e
Patch0:            nginx-auto-cc-gcc.patch
675c6e
675c6e
# downstream patch - changing logs permissions to 664 instead
675c6e
# previous 644
675c6e
Patch1:            nginx-1.14.0-logs-perm.patch
675c6e
675c6e
# PKCS#11 engine fix
675c6e
Patch2:            nginx-1.16.0-pkcs11.patch
675c6e
675c6e
# https://bugzilla.redhat.com/show_bug.cgi?id=1655530
675c6e
Patch3:            nginx-1.14.1-perl-module-hardening.patch
675c6e
675c6e
# https://bugzilla.redhat.com/show_bug.cgi?id=1643647
675c6e
Patch4:            nginx-1.16.0-enable-tls1v3-by-default.patch
675c6e
703789
# https://bugzilla.redhat.com/show_bug.cgi?id=1790277
703789
Patch5:            nginx-1.16.1-CVE-2019-20372.patch
703789
283bfd
# https://bugzilla.redhat.com/show_bug.cgi?id=1963174
283bfd
Patch6:            nginx-1.16.0-CVE-2021-23017.patch
283bfd
675c6e
%if 0%{?with_gperftools}
675c6e
BuildRequires:     gperftools-devel
675c6e
%endif
675c6e
BuildRequires:     openssl-devel
675c6e
BuildRequires:     pcre-devel
675c6e
BuildRequires:     zlib-devel
675c6e
675c6e
Requires:          nginx-filesystem = %{epoch}:%{version}-%{release}
675c6e
675c6e
%if 0%{?rhel} > 0 && 0%{?rhel} < 8
675c6e
# Introduced at 1:1.10.0-1 to ease upgrade path. To be removed later.
675c6e
Requires:          nginx-all-modules = %{epoch}:%{version}-%{release}
675c6e
%endif
675c6e
675c6e
Requires:          openssl
675c6e
Requires:          pcre
675c6e
Requires(pre):     nginx-filesystem
675c6e
%if 0%{?with_mailcap_mimetypes}
675c6e
Requires:          nginx-mimetypes
675c6e
%endif
675c6e
Provides:          webserver
675c6e
675c6e
BuildRequires:     systemd
675c6e
Requires(post):    systemd
675c6e
Requires(preun):   systemd
675c6e
Requires(postun):  systemd
675c6e
675c6e
%description
675c6e
Nginx is a web server and a reverse proxy server for HTTP, SMTP, POP3 and
675c6e
IMAP protocols, with a strong focus on high concurrency, performance and low
675c6e
memory usage.
675c6e
675c6e
%package all-modules
675c6e
Group:             System Environment/Daemons
675c6e
Summary:           A meta package that installs all available Nginx modules
675c6e
BuildArch:         noarch
675c6e
675c6e
%if %{with geoip}
675c6e
Requires:          nginx-mod-http-geoip = %{epoch}:%{version}-%{release}
675c6e
%endif
675c6e
Requires:          nginx-mod-http-image-filter = %{epoch}:%{version}-%{release}
675c6e
Requires:          nginx-mod-http-perl = %{epoch}:%{version}-%{release}
675c6e
Requires:          nginx-mod-http-xslt-filter = %{epoch}:%{version}-%{release}
675c6e
Requires:          nginx-mod-mail = %{epoch}:%{version}-%{release}
675c6e
Requires:          nginx-mod-stream = %{epoch}:%{version}-%{release}
675c6e
675c6e
%description all-modules
675c6e
A meta package that installs all available Nginx modules.
675c6e
675c6e
%package filesystem
675c6e
Group:             System Environment/Daemons
675c6e
Summary:           The basic directory layout for the Nginx server
675c6e
BuildArch:         noarch
675c6e
Requires(pre):     shadow-utils
675c6e
675c6e
%description filesystem
675c6e
The nginx-filesystem package contains the basic directory layout
675c6e
for the Nginx server including the correct permissions for the
675c6e
directories.
675c6e
675c6e
%if %{with geoip}
675c6e
%package mod-http-geoip
675c6e
Group:             System Environment/Daemons
675c6e
Summary:           Nginx HTTP geoip module
675c6e
BuildRequires:     GeoIP-devel
675c6e
Requires:          nginx
675c6e
Requires:          GeoIP
675c6e
675c6e
%description mod-http-geoip
675c6e
%{summary}.
675c6e
%endif
675c6e
675c6e
%package mod-http-image-filter
675c6e
Group:             System Environment/Daemons
675c6e
Summary:           Nginx HTTP image filter module
675c6e
BuildRequires:     gd-devel
675c6e
Requires:          nginx
675c6e
Requires:          gd
675c6e
675c6e
%description mod-http-image-filter
675c6e
%{summary}.
675c6e
675c6e
%package mod-http-perl
675c6e
Group:             System Environment/Daemons
675c6e
Summary:           Nginx HTTP perl module
675c6e
BuildRequires:     perl-devel
675c6e
%if 0%{?fedora} >= 24
675c6e
BuildRequires:     perl-generators
675c6e
%endif
675c6e
BuildRequires:     perl(ExtUtils::Embed)
675c6e
Requires:          nginx
675c6e
Requires:          perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
675c6e
Requires:          perl(constant)
675c6e
675c6e
%description mod-http-perl
675c6e
%{summary}.
675c6e
675c6e
%package mod-http-xslt-filter
675c6e
Group:             System Environment/Daemons
675c6e
Summary:           Nginx XSLT module
675c6e
BuildRequires:     libxslt-devel
675c6e
Requires:          nginx
675c6e
675c6e
%description mod-http-xslt-filter
675c6e
%{summary}.
675c6e
675c6e
%package mod-mail
675c6e
Group:             System Environment/Daemons
675c6e
Summary:           Nginx mail modules
675c6e
Requires:          nginx
675c6e
675c6e
%description mod-mail
675c6e
%{summary}.
675c6e
675c6e
%package mod-stream
675c6e
Group:             System Environment/Daemons
675c6e
Summary:           Nginx stream modules
675c6e
Requires:          nginx
675c6e
675c6e
%description mod-stream
675c6e
%{summary}.
675c6e
675c6e
675c6e
%prep
675c6e
%setup -q
675c6e
%patch0 -p0
675c6e
%patch1 -p1
675c6e
%patch2 -p1
675c6e
%patch3 -p1
675c6e
%patch4 -p1
703789
%patch5 -p1
283bfd
%patch6 -p1
675c6e
675c6e
cp %{SOURCE200} %{SOURCE210} %{SOURCE10} %{SOURCE12} .
675c6e
675c6e
%if 0%{?rhel} > 0 && 0%{?rhel} < 8
675c6e
sed -i -e 's#KillMode=.*#KillMode=process#g' nginx.service
675c6e
sed -i -e 's#PROFILE=SYSTEM#HIGH:!aNULL:!MD5#' nginx.conf
675c6e
%endif
675c6e
675c6e
675c6e
%build
675c6e
# nginx does not utilize a standard configure script.  It has its own
675c6e
# and the standard configure options cause the nginx configure script
675c6e
# to error out.  This is is also the reason for the DESTDIR environment
675c6e
# variable.
675c6e
export DESTDIR=%{buildroot}
675c6e
./configure \
675c6e
    --prefix=%{_datadir}/nginx \
675c6e
    --sbin-path=%{_sbindir}/nginx \
675c6e
    --modules-path=%{_libdir}/nginx/modules \
675c6e
    --conf-path=%{_sysconfdir}/nginx/nginx.conf \
675c6e
    --error-log-path=%{_localstatedir}/log/nginx/error.log \
675c6e
    --http-log-path=%{_localstatedir}/log/nginx/access.log \
675c6e
    --http-client-body-temp-path=%{_localstatedir}/lib/nginx/tmp/client_body \
675c6e
    --http-proxy-temp-path=%{_localstatedir}/lib/nginx/tmp/proxy \
675c6e
    --http-fastcgi-temp-path=%{_localstatedir}/lib/nginx/tmp/fastcgi \
675c6e
    --http-uwsgi-temp-path=%{_localstatedir}/lib/nginx/tmp/uwsgi \
675c6e
    --http-scgi-temp-path=%{_localstatedir}/lib/nginx/tmp/scgi \
675c6e
    --pid-path=/run/nginx.pid \
675c6e
    --lock-path=/run/lock/subsys/nginx \
675c6e
    --user=%{nginx_user} \
675c6e
    --group=%{nginx_user} \
675c6e
%if 0%{?with_aio}
675c6e
    --with-file-aio \
675c6e
%endif
675c6e
    --with-ipv6 \
675c6e
    --with-http_ssl_module \
675c6e
    --with-http_v2_module \
675c6e
    --with-http_realip_module \
675c6e
    --with-stream_ssl_preread_module \
675c6e
    --with-http_addition_module \
675c6e
    --with-http_xslt_module=dynamic \
675c6e
    --with-http_image_filter_module=dynamic \
675c6e
%if %{with geoip}
675c6e
    --with-http_geoip_module=dynamic \
675c6e
%endif
675c6e
    --with-http_sub_module \
675c6e
    --with-http_dav_module \
675c6e
    --with-http_flv_module \
675c6e
    --with-http_mp4_module \
675c6e
    --with-http_gunzip_module \
675c6e
    --with-http_gzip_static_module \
675c6e
    --with-http_random_index_module \
675c6e
    --with-http_secure_link_module \
675c6e
    --with-http_degradation_module \
675c6e
    --with-http_slice_module \
675c6e
    --with-http_stub_status_module \
675c6e
    --with-http_perl_module=dynamic \
675c6e
    --with-http_auth_request_module \
675c6e
    --with-mail=dynamic \
675c6e
    --with-mail_ssl_module \
675c6e
    --with-pcre \
675c6e
    --with-pcre-jit \
675c6e
    --with-stream=dynamic \
675c6e
    --with-stream_ssl_module \
675c6e
%if 0%{?with_gperftools}
675c6e
    --with-google_perftools_module \
675c6e
%endif
675c6e
    --with-debug \
675c6e
    --with-cc-opt="%{optflags} $(pcre-config --cflags)" \
675c6e
    --with-ld-opt="$RPM_LD_FLAGS -Wl,-E" # so the perl module finds its symbols
675c6e
675c6e
make %{?_smp_mflags}
675c6e
675c6e
675c6e
%install
675c6e
make install DESTDIR=%{buildroot} INSTALLDIRS=vendor
675c6e
675c6e
find %{buildroot} -type f -name .packlist -exec rm -f '{}' \;
675c6e
find %{buildroot} -type f -name perllocal.pod -exec rm -f '{}' \;
675c6e
find %{buildroot} -type f -empty -exec rm -f '{}' \;
675c6e
find %{buildroot} -type f -iname '*.so' -exec chmod 0755 '{}' \;
675c6e
675c6e
install -p -D -m 0644 ./nginx.service \
675c6e
    %{buildroot}%{_unitdir}/nginx.service
675c6e
install -p -D -m 0644 %{SOURCE11} \
675c6e
    %{buildroot}%{_sysconfdir}/logrotate.d/nginx
675c6e
675c6e
install -p -d -m 0755 %{buildroot}%{_sysconfdir}/systemd/system/nginx.service.d
675c6e
install -p -d -m 0755 %{buildroot}%{_unitdir}/nginx.service.d
675c6e
675c6e
install -p -d -m 0755 %{buildroot}%{_sysconfdir}/nginx/conf.d
675c6e
install -p -d -m 0755 %{buildroot}%{_sysconfdir}/nginx/default.d
675c6e
675c6e
install -p -d -m 0700 %{buildroot}%{_localstatedir}/lib/nginx
675c6e
install -p -d -m 0700 %{buildroot}%{_localstatedir}/lib/nginx/tmp
675c6e
install -p -d -m 0700 %{buildroot}%{_localstatedir}/log/nginx
675c6e
675c6e
install -p -d -m 0755 %{buildroot}%{_datadir}/nginx/html
675c6e
install -p -d -m 0755 %{buildroot}%{_datadir}/nginx/modules
675c6e
install -p -d -m 0755 %{buildroot}%{_libdir}/nginx/modules
675c6e
675c6e
install -p -m 0644 ./nginx.conf \
675c6e
    %{buildroot}%{_sysconfdir}/nginx
675c6e
install -p -m 0644 %{SOURCE100} \
675c6e
    %{buildroot}%{_datadir}/nginx/html
675c6e
install -p -m 0644 %{SOURCE101} %{SOURCE102} \
675c6e
    %{buildroot}%{_datadir}/nginx/html
675c6e
install -p -m 0644 %{SOURCE103} %{SOURCE104} \
675c6e
    %{buildroot}%{_datadir}/nginx/html
675c6e
675c6e
%if 0%{?with_mailcap_mimetypes}
675c6e
rm -f %{buildroot}%{_sysconfdir}/nginx/mime.types
675c6e
%endif
675c6e
675c6e
install -p -D -m 0644 %{_builddir}/nginx-%{version}/objs/nginx.8 \
675c6e
    %{buildroot}%{_mandir}/man8/nginx.8
675c6e
675c6e
install -p -D -m 0755 %{SOURCE13} %{buildroot}%{_bindir}/nginx-upgrade
675c6e
install -p -D -m 0644 %{SOURCE14} %{buildroot}%{_mandir}/man8/nginx-upgrade.8
675c6e
675c6e
for i in ftdetect indent syntax; do
675c6e
    install -p -D -m644 contrib/vim/${i}/nginx.vim \
675c6e
        %{buildroot}%{_datadir}/vim/vimfiles/${i}/nginx.vim
675c6e
done
675c6e
675c6e
%if %{with geoip}
675c6e
echo 'load_module "%{_libdir}/nginx/modules/ngx_http_geoip_module.so";' \
675c6e
    > %{buildroot}%{_datadir}/nginx/modules/mod-http-geoip.conf
675c6e
%endif
675c6e
echo 'load_module "%{_libdir}/nginx/modules/ngx_http_image_filter_module.so";' \
675c6e
    > %{buildroot}%{_datadir}/nginx/modules/mod-http-image-filter.conf
675c6e
echo 'load_module "%{_libdir}/nginx/modules/ngx_http_perl_module.so";' \
675c6e
    > %{buildroot}%{_datadir}/nginx/modules/mod-http-perl.conf
675c6e
echo 'load_module "%{_libdir}/nginx/modules/ngx_http_xslt_filter_module.so";' \
675c6e
    > %{buildroot}%{_datadir}/nginx/modules/mod-http-xslt-filter.conf
675c6e
echo 'load_module "%{_libdir}/nginx/modules/ngx_mail_module.so";' \
675c6e
    > %{buildroot}%{_datadir}/nginx/modules/mod-mail.conf
675c6e
echo 'load_module "%{_libdir}/nginx/modules/ngx_stream_module.so";' \
675c6e
    > %{buildroot}%{_datadir}/nginx/modules/mod-stream.conf
675c6e
675c6e
%pre filesystem
675c6e
getent group %{nginx_user} > /dev/null || groupadd -r %{nginx_user}
675c6e
getent passwd %{nginx_user} > /dev/null || \
675c6e
    useradd -r -d %{_localstatedir}/lib/nginx -g %{nginx_user} \
675c6e
    -s /sbin/nologin -c "Nginx web server" %{nginx_user}
675c6e
exit 0
675c6e
675c6e
%post
675c6e
%systemd_post nginx.service
675c6e
675c6e
%if %{with geoip}
675c6e
%post mod-http-geoip
675c6e
if [ $1 -eq 1 ]; then
675c6e
    /usr/bin/systemctl reload nginx.service >/dev/null 2>&1 || :
675c6e
fi
675c6e
%endif
675c6e
675c6e
%post mod-http-image-filter
675c6e
if [ $1 -eq 1 ]; then
675c6e
    /usr/bin/systemctl reload nginx.service >/dev/null 2>&1 || :
675c6e
fi
675c6e
675c6e
%post mod-http-perl
675c6e
if [ $1 -eq 1 ]; then
675c6e
    /usr/bin/systemctl reload nginx.service >/dev/null 2>&1 || :
675c6e
fi
675c6e
675c6e
%post mod-http-xslt-filter
675c6e
if [ $1 -eq 1 ]; then
675c6e
    /usr/bin/systemctl reload nginx.service >/dev/null 2>&1 || :
675c6e
fi
675c6e
675c6e
%post mod-mail
675c6e
if [ $1 -eq 1 ]; then
675c6e
    /usr/bin/systemctl reload nginx.service >/dev/null 2>&1 || :
675c6e
fi
675c6e
675c6e
%post mod-stream
675c6e
if [ $1 -eq 1 ]; then
675c6e
    /usr/bin/systemctl reload nginx.service >/dev/null 2>&1 || :
675c6e
fi
675c6e
675c6e
%preun
675c6e
%systemd_preun nginx.service
675c6e
675c6e
%postun
675c6e
%systemd_postun nginx.service
675c6e
if [ $1 -ge 1 ]; then
675c6e
    /usr/bin/nginx-upgrade >/dev/null 2>&1 || :
675c6e
fi
675c6e
675c6e
%files
675c6e
%license LICENSE
675c6e
%doc CHANGES README README.dynamic
675c6e
%if 0%{?rhel} == 7
675c6e
%doc UPGRADE-NOTES-1.6-to-1.10
675c6e
%endif
675c6e
%{_datadir}/nginx/html/*
675c6e
%{_bindir}/nginx-upgrade
675c6e
%{_sbindir}/nginx
675c6e
%{_datadir}/vim/vimfiles/ftdetect/nginx.vim
675c6e
%{_datadir}/vim/vimfiles/syntax/nginx.vim
675c6e
%{_datadir}/vim/vimfiles/indent/nginx.vim
675c6e
%{_mandir}/man3/nginx.3pm*
675c6e
%{_mandir}/man8/nginx.8*
675c6e
%{_mandir}/man8/nginx-upgrade.8*
675c6e
%{_unitdir}/nginx.service
675c6e
%config(noreplace) %{_sysconfdir}/nginx/fastcgi.conf
675c6e
%config(noreplace) %{_sysconfdir}/nginx/fastcgi.conf.default
675c6e
%config(noreplace) %{_sysconfdir}/nginx/fastcgi_params
675c6e
%config(noreplace) %{_sysconfdir}/nginx/fastcgi_params.default
675c6e
%config(noreplace) %{_sysconfdir}/nginx/koi-utf
675c6e
%config(noreplace) %{_sysconfdir}/nginx/koi-win
675c6e
%if ! 0%{?with_mailcap_mimetypes}
675c6e
%config(noreplace) %{_sysconfdir}/nginx/mime.types
675c6e
%endif
675c6e
%config(noreplace) %{_sysconfdir}/nginx/mime.types.default
675c6e
%config(noreplace) %{_sysconfdir}/nginx/nginx.conf
675c6e
%config(noreplace) %{_sysconfdir}/nginx/nginx.conf.default
675c6e
%config(noreplace) %{_sysconfdir}/nginx/scgi_params
675c6e
%config(noreplace) %{_sysconfdir}/nginx/scgi_params.default
675c6e
%config(noreplace) %{_sysconfdir}/nginx/uwsgi_params
675c6e
%config(noreplace) %{_sysconfdir}/nginx/uwsgi_params.default
675c6e
%config(noreplace) %{_sysconfdir}/nginx/win-utf
675c6e
%config(noreplace) %{_sysconfdir}/logrotate.d/nginx
675c6e
%attr(770,%{nginx_user},root) %dir %{_localstatedir}/lib/nginx
675c6e
%attr(770,%{nginx_user},root) %dir %{_localstatedir}/lib/nginx/tmp
675c6e
%attr(770,%{nginx_user},root) %dir %{_localstatedir}/log/nginx
675c6e
%dir %{_libdir}/nginx/modules
675c6e
675c6e
%files all-modules
675c6e
675c6e
%files filesystem
675c6e
%dir %{_datadir}/nginx
675c6e
%dir %{_datadir}/nginx/html
675c6e
%dir %{_sysconfdir}/nginx
675c6e
%dir %{_sysconfdir}/nginx/conf.d
675c6e
%dir %{_sysconfdir}/nginx/default.d
675c6e
%dir %{_sysconfdir}/systemd/system/nginx.service.d
675c6e
%dir %{_unitdir}/nginx.service.d
675c6e
675c6e
%if %{with geoip}
675c6e
%files mod-http-geoip
675c6e
%{_datadir}/nginx/modules/mod-http-geoip.conf
675c6e
%{_libdir}/nginx/modules/ngx_http_geoip_module.so
675c6e
%endif
675c6e
675c6e
%files mod-http-image-filter
675c6e
%{_datadir}/nginx/modules/mod-http-image-filter.conf
675c6e
%{_libdir}/nginx/modules/ngx_http_image_filter_module.so
675c6e
675c6e
%files mod-http-perl
675c6e
%{_datadir}/nginx/modules/mod-http-perl.conf
675c6e
%{_libdir}/nginx/modules/ngx_http_perl_module.so
675c6e
%dir %{perl_vendorarch}/auto/nginx
675c6e
%{perl_vendorarch}/nginx.pm
675c6e
%{perl_vendorarch}/auto/nginx/nginx.so
675c6e
675c6e
%files mod-http-xslt-filter
675c6e
%{_datadir}/nginx/modules/mod-http-xslt-filter.conf
675c6e
%{_libdir}/nginx/modules/ngx_http_xslt_filter_module.so
675c6e
675c6e
%files mod-mail
675c6e
%{_datadir}/nginx/modules/mod-mail.conf
675c6e
%{_libdir}/nginx/modules/ngx_mail_module.so
675c6e
675c6e
%files mod-stream
675c6e
%{_datadir}/nginx/modules/mod-stream.conf
675c6e
%{_libdir}/nginx/modules/ngx_stream_module.so
675c6e
675c6e
675c6e
%changelog
283bfd
* Tue May 25 2021 Luboš Uhliarik <luhliari@redhat.com> - 1:1.16.1-2.1
283bfd
- Resolves: #1963174 - CVE-2021-23017 nginx:1.16/nginx: Off-by-one in
283bfd
  ngx_resolver_copy() when labels are followed by a pointer to a root
283bfd
  domain name
283bfd
283bfd
* Mon Nov 23 2020 Lubos Uhliarik <luhliari@redhat.com> - 1:1.16.1-2
283bfd
- Resolves: #1798230 - CVE-2019-20372 nginx:1.16/nginx: HTTP request smuggling
703789
  via error pages in http/ngx_http_special_response.c
703789
675c6e
* Thu Aug 29 2019 Lubos Uhliarik <luhliari@redhat.com> - 1:1.16.1-1
675c6e
- update to 1.16.1
675c6e
- Resolves: #1745697 - CVE-2019-9511 nginx:1.16/nginx: HTTP/2: large amount
675c6e
  of data request leads to denial of service
675c6e
- Resolves: #1745690 - CVE-2019-9513 nginx:1.16/nginx: HTTP/2: flood using
675c6e
  PRIORITY frames resulting in excessive resource consumption
675c6e
- Resolves: #1745645 - CVE-2019-9516 nginx:1.16/nginx: HTTP/2: 0-length
675c6e
  headers leads to denial of service
675c6e
675c6e
* Wed Jun 26 2019 Lubos Uhliarik <luhliari@redhat.com> - 1:1.16.0-2
675c6e
- Resolves: #1718929 - ssl_protocols config option has faulty behavior
675c6e
  in nginx:1.16
675c6e
675c6e
* Mon May 06 2019 Lubos Uhliarik <luhliari@redhat.com> - 1:1.16.0-1
675c6e
- new version 1.16.0
675c6e
- enable ngx_stream_ssl_preread module
675c6e
- main package does NOT require all-modules package
675c6e
675c6e
* Wed Dec 12 2018 Lubos Uhliarik <luhliari@redhat.com> - 1:1.14.1-8
675c6e
- enable TLS 1.3 by default (#1643647)
675c6e
- TLSv1.0 and TLSv1.1 can be enabled now (#1644746)
675c6e
675c6e
* Tue Dec 11 2018 Joe Orton <jorton@redhat.com> - 1:1.14.1-3
675c6e
- fix unexpanded paths in nginx(8) (#1643069)
675c6e
675c6e
* Mon Dec 03 2018 Lubos Uhliarik <luhliari@redhat.com> - 1:1.14.1-2
675c6e
- Resolves: #1655530 - Hardening tests fail for nginx
675c6e
675c6e
* Mon Nov 19 2018 Lubos Uhliarik <luhliari@redhat.com> - 1:1.14.1-1
675c6e
- new version 1.14.1
675c6e
- Resolves: #1647257 - CVE-2018-16845 nginx: Denial of service and
675c6e
  memory disclosure via mp4 module
675c6e
- Resolves: #1647262 - CVE-2018-16844 nginx: Excessive CPU usage
675c6e
  via flaw in HTTP/2 implementation
675c6e
- Resolves: #1647263 - CVE-2018-16843 nginx: Excessive memory consumption
675c6e
  via flaw in HTTP/2 implementation
675c6e
675c6e
* Wed Aug  8 2018 Joe Orton <jorton@redhat.com> - 1:1.14.0-3
675c6e
- fix PKCS#11 support (Anderson Sasaki, #1545526)
675c6e
675c6e
* Mon Aug 06 2018 Lubos Uhliarik <luhliari@redhat.com> - 1:1.14.0-2
675c6e
- add dependency on perl(constant)
675c6e
675c6e
* Mon Jul 30 2018 Luboš Uhliarik <luhliari@redhat.com> - 1:1.14.0-1
675c6e
- Resolves: #1558420 - directory permissions are now correct after processing
675c6e
  USR1 signal
675c6e
- Resolves: #1601414 - nginx: drop GeoIP support
675c6e
675c6e
* Thu Jul 19 2018 Joe Orton <jorton@redhat.com> - 1:1.12.1-12
675c6e
- add build conditional for geoip support
675c6e
675c6e
* Thu May 03 2018 Luboš Uhliarik <luhliari@redhat.com> - 1:1.14.0-1
675c6e
- new version 1.14.0
675c6e
675c6e
* Wed Apr 25 2018 Luboš Uhliarik <luhliari@redhat.com> - 1:1.12.1-9
675c6e
- changed directory permissions (#1558420)
675c6e
675c6e
* Fri Mar 23 2018 Joe Orton <jorton@redhat.com> - 1:1.12.1-8
675c6e
- disable gperftools (#1496868)
675c6e
675c6e
* Thu Mar 22 2018 Joe Orton <jorton@redhat.com> - 1:1.12.1-7
675c6e
- update branding (#1512565)
675c6e
675c6e
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.12.1-6
675c6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
675c6e
675c6e
* Wed Jan 24 2018 Björn Esser <besser82@fedoraproject.org> - 1:1.12.1-5
675c6e
- Add patch to apply glibc bugfix if really needed only
675c6e
- Disable strict symbol checks in the link editor
675c6e
675c6e
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 1:1.12.1-4
675c6e
- Rebuilt for switch to libxcrypt
675c6e
675c6e
* Tue Oct 24 2017 Joe Orton <jorton@redhat.com> - 1:1.12.1-3
675c6e
- rebuild
675c6e
675c6e
* Tue Sep 19 2017 Remi Collet <remi@fedoraproject.org> - 1:1.12.1-2
675c6e
- own system drop-in directories #1493036
675c6e
675c6e
* Tue Aug 15 2017 Joe Orton <jorton@redhat.com> - 1:1.12.1-1
675c6e
- update to 1.12.1 (#1469924)
675c6e
- enable http_auth_request_module (Tim Niemueller, #1471106)
675c6e
675c6e
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.12.0-4
675c6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
675c6e
675c6e
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.12.0-3
675c6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
675c6e
675c6e
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1:1.12.0-2
675c6e
- Perl 5.26 rebuild
675c6e
675c6e
* Tue May 30 2017 Luboš Uhliarik <luhliari@redhat.com> - 1:1.12.0-1
675c6e
- new version 1.12.0
675c6e
675c6e
* Wed Feb  8 2017 Joe Orton <jorton@redhat.com> - 1:1.10.3-1
675c6e
- update to upstream release 1.10.3
675c6e
675c6e
* Mon Oct 31 2016 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.10.2-1
675c6e
- update to upstream release 1.10.2
675c6e
675c6e
* Tue May 31 2016 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.10.1-1
675c6e
- update to upstream release 1.10.1
675c6e
675c6e
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1:1.10.0-4
675c6e
- Perl 5.24 rebuild
675c6e
675c6e
* Sun May  8 2016 Peter Robinson <pbrobinson@fedoraproject.org> 1:1.10.0-3
675c6e
- Enable AIO on aarch64 (rhbz 1258414)
675c6e
675c6e
* Wed Apr 27 2016 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.10.0-2
675c6e
- only Require nginx-all-modules for EPEL and current Fedora releases
675c6e
675c6e
* Wed Apr 27 2016 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.10.0-1
675c6e
- update to upstream release 1.10.0
675c6e
- split dynamic modules into subpackages
675c6e
- spec file cleanup
675c6e
675c6e
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.8.1-2
675c6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
675c6e
675c6e
* Tue Jan 26 2016 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.8.1-1
675c6e
- update to upstream release 1.8.1
675c6e
- CVE-2016-0747: Insufficient limits of CNAME resolution in resolver
675c6e
- CVE-2016-0746: Use-after-free during CNAME response processing in resolver
675c6e
- CVE-2016-0742: Invalid pointer dereference in resolver
675c6e
675c6e
* Sun Oct 04 2015 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.8.0-14
675c6e
- consistently use '%%global with_foo' style of logic
675c6e
- remove PID file before starting nginx (#1268621)
675c6e
675c6e
* Fri Sep 25 2015 Ville Skyttä <ville.skytta@iki.fi> - 1:1.8.0-13
675c6e
- Use nginx-mimetypes from mailcap (#1248736)
675c6e
- Mark LICENSE as %%license
675c6e
675c6e
* Thu Sep 10 2015 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.8.0-12
675c6e
- also build with gperftools on aarch64 (#1258412)
675c6e
675c6e
* Wed Aug 12 2015 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1:1.8.0-11
675c6e
- nginx.conf: added commented-out SSL configuration directives (#1179232)
675c6e
675c6e
* Fri Jul 03 2015 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.8.0-10
675c6e
- switch back to /bin/kill in logrotate script due to SELinux denials
675c6e
675c6e
* Tue Jun 16 2015 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.8.0-9
675c6e
- fix path to png in error pages (#1232277)
675c6e
- optimize png images with optipng
675c6e
675c6e
* Sun Jun 14 2015 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.8.0-8
675c6e
- replace /bin/kill with /usr/bin/systemctl kill in logrotate script (#1231543)
675c6e
- remove After=syslog.target in nginx.service (#1231543)
675c6e
- replace ExecStop with KillSignal=SIGQUIT in nginx.service (#1231543)
675c6e
675c6e
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1:1.8.0-7
675c6e
- Perl 5.22 rebuild
675c6e
675c6e
* Sun May 10 2015 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.8.0-6
675c6e
- revert previous change
675c6e
675c6e
* Sun May 10 2015 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.8.0-5
675c6e
- move default server to default.conf (#1220094)
675c6e
675c6e
* Sun May 10 2015 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.8.0-4
675c6e
- add TimeoutStopSec=5 and KillMode=mixed to nginx.service
675c6e
- set worker_processes to auto
675c6e
- add some common options to the http block in nginx.conf
675c6e
- run nginx-upgrade on package update
675c6e
- remove some redundant scriptlet commands
675c6e
- listen on ipv6 for default server (#1217081)
675c6e
675c6e
* Wed Apr 22 2015 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.8.0-3
675c6e
- improve nginx-upgrade script
675c6e
675c6e
* Wed Apr 22 2015 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.8.0-2
675c6e
- add --with-pcre-jit
675c6e
675c6e
* Wed Apr 22 2015 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.8.0-1
675c6e
- update to upstream release 1.8.0
675c6e
675c6e
* Thu Apr 09 2015 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.7.12-1
675c6e
- update to upstream release 1.7.12
675c6e
675c6e
* Sun Feb 15 2015 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.7.10-1
675c6e
- update to upstream release 1.7.10
675c6e
- remove systemd conditionals
675c6e
675c6e
* Wed Oct 22 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.6.2-4
675c6e
- fix package ownership of directories
675c6e
675c6e
* Wed Oct 22 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.6.2-3
675c6e
- add vim files (#1142849)
675c6e
675c6e
* Mon Sep 22 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.6.2-2
675c6e
- create nginx-filesystem subpackage (patch from Remi Collet)
675c6e
- create /etc/nginx/default.d as a drop-in directory for configuration files
675c6e
  for the default server block
675c6e
- clean up nginx.conf
675c6e
675c6e
* Wed Sep 17 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.6.2-1
675c6e
- update to upstream release 1.6.2
675c6e
- CVE-2014-3616 nginx: virtual host confusion (#1142573)
675c6e
675c6e
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1:1.6.1-4
675c6e
- Perl 5.20 rebuild
675c6e
675c6e
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.6.1-3
675c6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
675c6e
675c6e
* Tue Aug 05 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.6.1-2
675c6e
- add logic for EPEL 7
675c6e
675c6e
* Tue Aug 05 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.6.1-1
675c6e
- update to upstream release 1.6.1
675c6e
- (#1126891) CVE-2014-3556: SMTP STARTTLS plaintext injection flaw
675c6e
675c6e
* Wed Jul 02 2014 Yaakov Selkowitz <yselkowi@redhat.com> - 1:1.6.0-3
675c6e
- Fix FTBFS on aarch64 (#1115559)
675c6e
675c6e
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.6.0-2
675c6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
675c6e
675c6e
* Sat Apr 26 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.6.0-1
675c6e
- update to upstream release 1.6.0
675c6e
675c6e
* Tue Mar 18 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.4.7-1
675c6e
- update to upstream release 1.4.7
675c6e
675c6e
* Wed Mar 05 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.4.6-1
675c6e
- update to upstream release 1.4.6
675c6e
675c6e
* Sun Feb 16 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.4.5-2
675c6e
- avoid multiple index directives (#1065488)
675c6e
675c6e
* Sun Feb 16 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.4.5-1
675c6e
- update to upstream release 1.4.5
675c6e
675c6e
* Wed Nov 20 2013 Peter Borsa <peter.borsa@gmail.com> - 1:1.4.4-1
675c6e
- Update to upstream release 1.4.4
675c6e
- Security fix BZ 1032267
675c6e
675c6e
* Sun Nov 03 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.4.3-1
675c6e
- update to upstream release 1.4.3
675c6e
675c6e
* Fri Aug 09 2013 Jonathan Steffan <jsteffan@fedoraproject.org> - 1:1.4.2-3
675c6e
- Add in conditionals to build for non-systemd targets
675c6e
675c6e
* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 1:1.4.2-2
675c6e
- Perl 5.18 rebuild
675c6e
675c6e
* Fri Jul 19 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.4.2-1
675c6e
- update to upstream release 1.4.2
675c6e
675c6e
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1:1.4.1-3
675c6e
- Perl 5.18 rebuild
675c6e
675c6e
* Tue Jun 11 2013 Remi Collet <rcollet@redhat.com> - 1:1.4.1-2
675c6e
- rebuild for new GD 2.1.0
675c6e
675c6e
* Tue May 07 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.4.1-1
675c6e
- update to upstream release 1.4.1 (#960605, #960606):
675c6e
  CVE-2013-2028 stack-based buffer overflow when handling certain chunked
675c6e
  transfer encoding requests
675c6e
675c6e
* Sun Apr 28 2013 Dan Horák <dan[at]danny.cz> - 1:1.4.0-2
675c6e
- gperftools exist only on selected arches
675c6e
675c6e
* Fri Apr 26 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.4.0-1
675c6e
- update to upstream release 1.4.0
675c6e
- enable SPDY module (new in this version)
675c6e
- enable http gunzip module (new in this version)
675c6e
- enable google perftools module and add gperftools-devel to BR
675c6e
- enable debugging (#956845)
675c6e
- trim changelog
675c6e
675c6e
* Tue Apr 02 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.8-1
675c6e
- update to upstream release 1.2.8
675c6e
675c6e
* Fri Feb 22 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.7-2
675c6e
- make sure nginx directories are not world readable (#913724, #913735)
675c6e
675c6e
* Sat Feb 16 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.7-1
675c6e
- update to upstream release 1.2.7
675c6e
- add .asc file
675c6e
675c6e
* Tue Feb 05 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.6-6
675c6e
- use 'kill' instead of 'systemctl' when rotating log files to workaround
675c6e
  SELinux issue (#889151)
675c6e
675c6e
* Wed Jan 23 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.6-5
675c6e
- uncomment "include /etc/nginx/conf.d/*.conf by default but leave the
675c6e
  conf.d directory empty (#903065)
675c6e
675c6e
* Wed Jan 23 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.6-4
675c6e
- add comment in nginx.conf regarding "include /etc/nginf/conf.d/*.conf"
675c6e
  (#903065)
675c6e
675c6e
* Wed Dec 19 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.6-3
675c6e
- use correct file ownership when rotating log files
675c6e
675c6e
* Tue Dec 18 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.6-2
675c6e
- send correct kill signal and use correct file permissions when rotating
675c6e
  log files (#888225)
675c6e
- send correct kill signal in nginx-upgrade
675c6e
675c6e
* Tue Dec 11 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.6-1
675c6e
- update to upstream release 1.2.6
675c6e
675c6e
* Sat Nov 17 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.5-1
675c6e
- update to upstream release 1.2.5
675c6e
675c6e
* Sun Oct 28 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.4-1
675c6e
- update to upstream release 1.2.4
675c6e
- introduce new systemd-rpm macros (#850228)
675c6e
- link to official documentation not the community wiki (#870733)
675c6e
- do not run systemctl try-restart after package upgrade to allow the
675c6e
  administrator to run nginx-upgrade and avoid downtime
675c6e
- add nginx man page (#870738)
675c6e
- add nginx-upgrade man page and remove README.fedora
675c6e
- remove chkconfig from Requires(post/preun)
675c6e
- remove initscripts from Requires(preun/postun)
675c6e
- remove separate configuration files in "/etc/nginx/conf.d" directory
675c6e
  and revert to upstream default of a centralized nginx.conf file
675c6e
  (#803635) (#842738)
675c6e
675c6e
* Fri Sep 21 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.3-1
675c6e
- update to upstream release 1.2.3
675c6e
675c6e
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.2.1-3
675c6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
675c6e
675c6e
* Thu Jun 28 2012 Petr Pisar <ppisar@redhat.com> - 1:1.2.1-2
675c6e
- Perl 5.16 rebuild
675c6e
675c6e
* Sun Jun 10 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.1-1
675c6e
- update to upstream release 1.2.1
675c6e
675c6e
* Fri Jun 08 2012 Petr Pisar <ppisar@redhat.com> - 1:1.2.0-2
675c6e
- Perl 5.16 rebuild
675c6e
675c6e
* Wed May 16 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.0-1
675c6e
- update to upstream release 1.2.0
675c6e
675c6e
* Wed May 16 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.15-4
675c6e
- add nginx-upgrade to replace functionality from the nginx initscript
675c6e
  that was lost after migration to systemd
675c6e
- add README.fedora to describe usage of nginx-upgrade
675c6e
- nginx.logrotate: use built-in systemd kill command in postrotate script
675c6e
- nginx.service: start after syslog.target and network.target
675c6e
- nginx.service: remove unnecessary references to config file location
675c6e
- nginx.service: use /bin/kill instead of "/usr/sbin/nginx -s" following
675c6e
  advice from nginx-devel
675c6e
- nginx.service: use private /tmp
675c6e
675c6e
* Mon May 14 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.15-3
675c6e
- fix incorrect postrotate script in nginx.logrotate
675c6e
675c6e
* Thu Apr 19 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.15-2
675c6e
- renable auto-cc-gcc patch due to warnings on rawhide
675c6e
675c6e
* Sat Apr 14 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.15-1
675c6e
- update to upstream release 1.0.15
675c6e
- no need to apply auto-cc-gcc patch
675c6e
- add %%global _hardened_build 1
675c6e
675c6e
* Thu Mar 15 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.14-1
675c6e
- update to upstream release 1.0.14
675c6e
- amend some %%changelog formatting
675c6e
675c6e
* Tue Mar 06 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.13-1
675c6e
- update to upstream release 1.0.13
675c6e
- amend --pid-path and --log-path
675c6e
675c6e
* Sun Mar 04 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.12-5
675c6e
- change pid path in nginx.conf to match systemd service file
675c6e
675c6e
* Sun Mar 04 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.12-3
675c6e
- fix %%pre scriptlet
675c6e
675c6e
* Mon Feb 20 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.12-2
675c6e
- update upstream URL
675c6e
- replace %%define with %%global
675c6e
- remove obsolete BuildRoot tag, %%clean section and %%defattr
675c6e
- remove various unnecessary commands
675c6e
- add systemd service file and update scriptlets
675c6e
- add Epoch to accommodate %%triggerun as part of systemd migration
675c6e
675c6e
* Sun Feb 19 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.0.12-1
675c6e
- Update to 1.0.12
675c6e
675c6e
* Thu Nov 17 2011 Keiran "Affix" Smith <fedora@affix.me> - 1.0.10-1
675c6e
- Bugfix: a segmentation fault might occur in a worker process if resolver got a big DNS response. Thanks to Ben Hawkes.
675c6e
- Bugfix: in cache key calculation if internal MD5 implementation wasused; the bug had appeared in 1.0.4.
675c6e
- Bugfix: the module ngx_http_mp4_module sent incorrect "Content-Length" response header line if the "start" argument was used. Thanks to Piotr Sikora.
675c6e
675c6e
* Thu Oct 27 2011 Keiran "Affix" Smith <fedora@affix.me> - 1.0.8-1
675c6e
- Update to new 1.0.8 stable release
675c6e
675c6e
* Fri Aug 26 2011 Keiran "Affix" Smith <fedora@affix.me> - 1.0.5-1
675c6e
- Update nginx to Latest Stable Release
675c6e
675c6e
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.0.0-3
675c6e
- Perl mass rebuild
675c6e
675c6e
* Thu Jun 09 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.0.0-2
675c6e
- Perl 5.14 mass rebuild
675c6e
675c6e
* Wed Apr 27 2011 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.0.0-1
675c6e
- Update to 1.0.0
675c6e
675c6e
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.53-6
675c6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
675c6e
675c6e
* Sun Dec 12 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.8.53.5
675c6e
- Extract out default config into its own file (bug #635776)
675c6e
675c6e
* Sun Dec 12 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.8.53-4
675c6e
- Revert ownership of log dir
675c6e
675c6e
* Sun Dec 12 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.8.53-3
675c6e
- Change ownership of /var/log/nginx to be 0700 nginx:nginx
675c6e
- update init script to use killproc -p
675c6e
- add reopen_logs command to init script
675c6e
- update init script to use nginx -q option
675c6e
675c6e
* Sun Oct 31 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.8.53-2
675c6e
- Fix linking of perl module
675c6e
675c6e
* Sun Oct 31 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.8.53-1
675c6e
- Update to new stable 0.8.53
675c6e
675c6e
* Sat Jul 31 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.7.67-2
675c6e
- add Provides: webserver (bug #619693)
675c6e
675c6e
* Sun Jun 20 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.7.67-1
675c6e
- Update to new stable 0.7.67
675c6e
- fix bugzilla #591543
675c6e
675c6e
* Tue Jun 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.7.65-2
675c6e
- Mass rebuild with perl-5.12.0
675c6e
675c6e
* Mon Feb 15 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.7.65-1
675c6e
- Update to new stable 0.7.65
675c6e
- change ownership of logdir to root:root
675c6e
- add support for ipv6 (bug #561248)
675c6e
- add random_index_module
675c6e
- add secure_link_module
675c6e
675c6e
* Fri Dec 04 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.7.64-1
675c6e
- Update to new stable 0.7.64