Summary: High-performance HTTP server and reverse proxy
Name: nginx
Version: 1.11.13
Release: 4%{?dist}
License: BSD-2-Clause
URL: http://nginx.org/download/nginx-1.11.13.tar.gz
Group: Applications/System
Vendor: VMware, Inc.
Distribution: Photon
Source0: %{name}-%{version}.tar.gz
%define sha1 nginx=84f27729754796181dc39d47da761c7e85eb3ae2
Patch0: CVE-2017-7529.patch
Source1: nginx.service
BuildRequires: openssl-devel
BuildRequires: pcre-devel
%description
NGINX is a free, open-source, high-performance HTTP server and reverse proxy, as well as an IMAP/POP3 proxy server.
%prep
%setup -q
%patch0 -p0
%build
./configure \
--prefix=%{_sysconfdir}//nginx \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--with-http_ssl_module \
--with-pcre \
--with-ipv6 \
--with-stream
make %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install
install -vdm755 %{buildroot}/usr/lib/systemd/system
install -vdm755 %{buildroot}%{_var}/log/nginx
install -p -m 0644 %{SOURCE1} %{buildroot}/usr/lib/systemd/system/nginx.service
%check
make -k check |& tee %{_specdir}/%{name}-check-log || %{nocheck}
%files
%defattr(-,root,root)
%{_sysconfdir}/*
%{_sbindir}/*
%{_libdir}/systemd/system/nginx.service
%dir %{_var}/log/nginx
%changelog
* Tue Oct 17 2017 Dheeraj Shetty <dheerajs@vmware.com> 1.11.13-4
- Add patch for CVE-2017-7529
* Fri Jun 23 2017 Divya Thaluru <dthaluru@vmware.com> 1.11.13-3
- Removed packaging of debug files
* Mon May 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 1.11.13-2
- adding module stream to nginx.
* Wed Apr 05 2017 Priyesh Padmavilasom <ppadmavilasom@vmware.com> 1.11.13-1
- update to 1.11.13
* Fri Nov 18 2016 Anish Swaminathan <anishs@vmware.com> 1.10.0-4
- Add patch for CVE-2016-4450
* Fri Jul 8 2016 Divya Thaluru<dthaluru@vmware.com> 1.10.0-3
- Modified default pid filepath and fixed nginx systemd service
* Tue May 24 2016 Priyesh Padmavilasom <ppadmavilasom@vmware.com> 1.10.0-2
- GA - Bump release of all rpms
* Mon May 16 2016 Xiaolin Li <xiaolinl@vmware.com> 1.10.0-1
- Initial build. First version