2021-10-14 14:31:16 +08:00
|
|
|
|
|
|
|
%global nginx_user nginx
|
|
|
|
|
2020-08-07 11:17:52 +08:00
|
|
|
Summary: High-performance HTTP server and reverse proxy
|
|
|
|
Name: nginx
|
2021-08-20 04:46:51 +08:00
|
|
|
Version: 1.20.1
|
2021-10-14 14:31:16 +08:00
|
|
|
Release: 2%{?dist}
|
2020-08-07 11:17:52 +08:00
|
|
|
License: BSD 2-Clause
|
|
|
|
Vendor: Microsoft Corporation
|
|
|
|
Distribution: Mariner
|
2021-02-13 09:01:13 +08:00
|
|
|
Group: Applications/System
|
|
|
|
URL: https://nginx.org/
|
2020-08-07 11:17:52 +08:00
|
|
|
Source0: https://nginx.org/download/%{name}-%{version}.tar.gz
|
|
|
|
Source1: nginx.service
|
|
|
|
Source2: nginx-njs-0.2.1.tar.gz
|
2021-08-20 04:46:51 +08:00
|
|
|
Patch0: CVE-2009-4487.nopatch
|
2021-10-14 14:31:16 +08:00
|
|
|
|
2020-08-07 11:17:52 +08:00
|
|
|
BuildRequires: openssl-devel
|
|
|
|
BuildRequires: pcre-devel
|
|
|
|
BuildRequires: which
|
2021-10-14 14:31:16 +08:00
|
|
|
|
|
|
|
Requires: %{name}-filesystem = %{version}-%{release}
|
|
|
|
Requires: %{name}-mimetypes
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2020-08-07 11:17:52 +08:00
|
|
|
%description
|
|
|
|
NGINX is a free, open-source, high-performance HTTP server and reverse proxy, as well as an IMAP/POP3 proxy server.
|
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
%package filesystem
|
|
|
|
Summary: The basic directory layout for the Nginx server
|
|
|
|
BuildArch: noarch
|
|
|
|
Requires(pre): shadow-utils
|
|
|
|
|
|
|
|
%description filesystem
|
|
|
|
The nginx-filesystem package contains the basic directory layout
|
|
|
|
for the Nginx server including the correct permissions for the
|
|
|
|
directories.
|
|
|
|
|
2020-08-07 11:17:52 +08:00
|
|
|
%prep
|
2020-10-29 01:59:41 +08:00
|
|
|
%autosetup -p1
|
2020-08-07 11:17:52 +08:00
|
|
|
pushd ../
|
|
|
|
mkdir nginx-njs
|
|
|
|
tar -C nginx-njs -xf %{SOURCE2}
|
|
|
|
popd
|
|
|
|
|
|
|
|
%build
|
|
|
|
sh configure \
|
2021-10-14 14:31:16 +08:00
|
|
|
--add-module=../nginx-njs/njs-0.2.1/nginx \
|
|
|
|
--conf-path=%{_sysconfdir}/nginx/nginx.conf \
|
2021-02-13 09:01:13 +08:00
|
|
|
--error-log-path=%{_var}/log/nginx/error.log \
|
2021-10-14 14:31:16 +08:00
|
|
|
--group=%{nginx_user} \
|
2021-02-13 09:01:13 +08:00
|
|
|
--http-log-path=%{_var}/log/nginx/access.log \
|
2021-10-14 14:31:16 +08:00
|
|
|
--lock-path=%{_var}/run/nginx.lock \
|
|
|
|
--pid-path=%{_var}/run/nginx.pid \
|
|
|
|
--prefix=%{_sysconfdir}/nginx \
|
|
|
|
--sbin-path=%{_sbindir}/nginx \
|
|
|
|
--user=%{nginx_user} \
|
2020-08-07 11:17:52 +08:00
|
|
|
--with-http_auth_request_module \
|
2021-10-14 14:31:16 +08:00
|
|
|
--with-http_ssl_module \
|
|
|
|
--with-http_stub_status_module \
|
2020-08-07 11:17:52 +08:00
|
|
|
--with-http_sub_module \
|
2021-10-14 14:31:16 +08:00
|
|
|
--with-ipv6 \
|
|
|
|
--with-pcre \
|
|
|
|
--with-stream
|
2020-08-07 11:17:52 +08:00
|
|
|
|
|
|
|
make %{?_smp_mflags}
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2020-08-07 11:17:52 +08:00
|
|
|
%install
|
|
|
|
make DESTDIR=%{buildroot} install
|
2021-02-13 09:01:13 +08:00
|
|
|
install -vdm755 %{buildroot}%{_libdir}/systemd/system
|
2020-08-07 11:17:52 +08:00
|
|
|
install -vdm755 %{buildroot}%{_var}/log
|
|
|
|
install -vdm755 %{buildroot}%{_var}/opt/nginx/log
|
|
|
|
ln -sfv %{_var}/opt/nginx/log %{buildroot}%{_var}/log/nginx
|
2021-02-13 09:01:13 +08:00
|
|
|
install -p -m 0644 %{SOURCE1} %{buildroot}%{_libdir}/systemd/system/nginx.service
|
2020-08-07 11:17:52 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
# Using the ones provided through the "nginx-mimetype" package.
|
|
|
|
rm -f %{buildroot}%{_sysconfdir}/%{name}/mime.types
|
|
|
|
|
|
|
|
%pre filesystem
|
|
|
|
getent group %{nginx_user} > /dev/null || groupadd -r %{nginx_user}
|
|
|
|
getent passwd %{nginx_user} > /dev/null || \
|
|
|
|
useradd -r -d %{_localstatedir}/lib/nginx -g %{nginx_user} \
|
|
|
|
-s /sbin/nologin -c "Nginx web server" %{nginx_user}
|
|
|
|
exit 0
|
|
|
|
|
2020-08-07 11:17:52 +08:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%license LICENSE
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/fastcgi.conf
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/fastcgi.conf.default
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/fastcgi_params
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/fastcgi_params.default
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/koi-utf
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/koi-win
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/mime.types.default
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/nginx.conf
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/nginx.conf.default
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/scgi_params
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/scgi_params.default
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/uwsgi_params
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/uwsgi_params.default
|
|
|
|
%{_sysconfdir}/%{name}/win-utf
|
|
|
|
%{_sysconfdir}/%{name}/html/*
|
|
|
|
%{_sbindir}/*
|
|
|
|
%{_libdir}/systemd/system/nginx.service
|
|
|
|
%dir %{_var}/opt/nginx/log
|
|
|
|
%{_var}/log/nginx
|
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
%files filesystem
|
|
|
|
%dir %{_sysconfdir}/%{name}
|
|
|
|
|
2020-08-07 11:17:52 +08:00
|
|
|
%changelog
|
2021-10-14 14:31:16 +08:00
|
|
|
* Wed Oct 13 2021 Pawel Winogrodzki <pawelwi@microsoft.com> - 1.20.1-2
|
|
|
|
- Split out "nginx-filesystem" using Fedora 34 spec (license: MIT) as guidance.
|
|
|
|
- Removing conflicts with "nginx-mimetypes" over "mime.types".
|
|
|
|
- Fixed changelog history to include version update.
|
|
|
|
|
|
|
|
* Fri Jun 11 2021 Henry Beberman <henry.beberman@microsoft.com> - 1.20.1-1
|
|
|
|
- Update to version 1.20.1 to resolve CVE-2021-23017
|
|
|
|
|
2021-04-07 11:39:22 +08:00
|
|
|
* Fri Apr 02 2021 Thomas Crain <thcrain@microsoft.com> - 1.16.1-4
|
|
|
|
- Merge the following releases from 1.0 to dev branch
|
|
|
|
- lihl@microsoft.com, 1.16.1-3: Used autosetup, Added patch to resolve CVE-2019-20372
|
|
|
|
- nicolasg@microsoft.com, 1.16.1-4: nopatch for CVE-2009-4487
|
2020-11-18 04:40:54 +08:00
|
|
|
|
2021-02-13 09:01:13 +08:00
|
|
|
* Wed Feb 10 2021 Henry Li <lihl@microsoft.com> - 1.16.1-3
|
|
|
|
- Add Provides for nginx-filesystem from nginx
|
|
|
|
|
2021-08-20 04:46:51 +08:00
|
|
|
* Sat May 09 2020 Nick Samson <nisamson@microsoft.com> - 1.16.1-2
|
|
|
|
- Added %%license line automatically
|
2020-08-07 11:17:52 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Fri Mar 13 2020 Paul Monson <paulmon@microsoft.com> - 1.16.1-1
|
|
|
|
- Update to version 1.16.1. License verified.
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Tue Sep 03 2019 Mateusz Malisz <mamalisz@microsoft.com> - 1.15.3-5
|
|
|
|
- Initial CBL-Mariner import from Photon (license: Apache2).
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Fri Mar 15 2019 Keerthana K <keerthanak@vmware.com> - 1.15.3-4
|
|
|
|
- Enable http_stub_status_module.
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Wed Nov 07 2018 Ajay Kaher <akaher@vmware.com> - 1.15.3-3
|
|
|
|
- mark config files as non replaceable on upgrade.
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Mon Sep 17 2018 Keerthana K <keerthanak@vmware.com> - 1.15.3-2
|
|
|
|
- Adding http_auth_request_module and http_sub_module.
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Fri Sep 7 2018 Him Kalyan Bordoloi <bordoloih@vmware.com> - 1.15.3-1
|
|
|
|
- Upgrade to version 1.15.3
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Fri Jul 20 2018 Keerthana K <keerthanak@vmware.com> - 1.13.8-3
|
|
|
|
- Restarting nginx on failure.
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Fri Jun 08 2018 Dheeraj Shetty <dheerajs@vmware.com> - 1.13.8-2
|
|
|
|
- adding module njs.
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Fri May 18 2018 Srivatsa S. Bhat <srivatsa@csail.mit.edu> - 1.13.8-1
|
|
|
|
- Update to version 1.13.8 to support nginx-ingress
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Thu Dec 28 2017 Divya Thaluru <dthaluru@vmware.com> - 1.13.5-2
|
|
|
|
- Fixed the log file directory structure
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Wed Oct 04 2017 Xiaolin Li <xiaolinl@vmware.com> - 1.13.5-1
|
|
|
|
- Update to version 1.13.5
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Mon May 01 2017 Dheeraj Shetty <dheerajs@vmware.com> - 1.11.13-2
|
|
|
|
- adding module stream to nginx.
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Wed Apr 05 2017 Priyesh Padmavilasom <ppadmavilasom@vmware.com> - 1.11.13-1
|
|
|
|
- update to 1.11.13
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Fri Nov 18 2016 Anish Swaminathan <anishs@vmware.com> - 1.10.0-5
|
|
|
|
- Add patch for CVE-2016-4450
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Wed Jul 27 2016 Divya Thaluru <dthaluru@vmware.com> - 1.10.0-4
|
|
|
|
- Removed packaging of debug files
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Fri Jul 8 2016 Divya Thaluru <dthaluru@vmware.com> - 1.10.0-3
|
|
|
|
- Modified default pid filepath and fixed nginx systemd service
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Tue May 24 2016 Priyesh Padmavilasom <ppadmavilasom@vmware.com> - 1.10.0-2
|
|
|
|
- GA - Bump release of all rpms
|
2021-02-13 09:01:13 +08:00
|
|
|
|
2021-10-14 14:31:16 +08:00
|
|
|
* Mon May 16 2016 Xiaolin Li <xiaolinl@vmware.com> - 1.10.0-1
|
|
|
|
- Initial build. First version
|