Marcus Rueckert
ed4ba9d2ef
- Feature: now TLSv1.3 can be used with BoringSSL. - Feature: the "ssl_early_data" directive, currently available with BoringSSL. - Feature: the "keepalive_timeout" and "keepalive_requests" directives in the "upstream" block. - Bugfix: the ngx_http_dav_module did not truncate destination file when copying a file over an existing one with the COPY method. - Bugfix: the ngx_http_dav_module used zero access rights on the destination file and did not preserve file modification time when moving a file between different file systems with the MOVE method. - Bugfix: the ngx_http_dav_module used default access rights when copying a file with the COPY method. - Workaround: some clients might not work when using HTTP/2; the bug had appeared in 1.13.5. - Bugfix: nginx could not be built with LibreSSL 2.8.0. OBS-URL: https://build.opensuse.org/package/show/server:http/nginx?expand=0&rev=119
432 lines
14 KiB
RPMSpec
432 lines
14 KiB
RPMSpec
#
|
|
# spec file for package nginx
|
|
#
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%bcond_with cpp_test
|
|
%bcond_with google_perftools
|
|
|
|
%if 0%{?is_opensuse}
|
|
%bcond_without extra_modules
|
|
%else
|
|
%bcond_with extra_modules
|
|
%endif
|
|
|
|
%if 0%{?suse_version} != 1315 || 0%{?is_opensuse}
|
|
%bcond_without libatomic
|
|
%else
|
|
%bcond_with libatomic
|
|
%endif
|
|
|
|
%if 0%{?suse_version} > 1220
|
|
%bcond_without http2
|
|
%bcond_without pcre_jit
|
|
%bcond_without systemd
|
|
%else
|
|
%bcond_with http2
|
|
%bcond_with pcre_jit
|
|
%bcond_with systemd
|
|
%endif
|
|
|
|
%{!?vim_data_dir:%global vim_data_dir /usr/share/vim/%(readlink /usr/share/vim/current)}
|
|
|
|
%define pkg_name nginx
|
|
%define ngx_prefix %{_prefix}
|
|
%define ngx_sbin_path %{_sbindir}/nginx
|
|
%define ngx_module_dir %{_libdir}/nginx/modules
|
|
%define ngx_conf_dir %{_sysconfdir}/nginx
|
|
%define ngx_conf_path %{ngx_conf_dir}/nginx.conf
|
|
%define ngx_log_dir %{_localstatedir}/log/nginx
|
|
%define ngx_error_log %{ngx_log_dir}/error.log
|
|
%define ngx_access_log %{ngx_log_dir}/access.log
|
|
%define ngx_home %{_localstatedir}/lib/nginx
|
|
%define ngx_tmp_http %{ngx_home}/tmp/
|
|
%define ngx_tmp_proxy %{ngx_home}/proxy/
|
|
%define ngx_tmp_fcgi %{ngx_home}/fastcgi/
|
|
%define ngx_tmp_scgi %{ngx_home}/scgi/
|
|
%define ngx_tmp_uwsgi %{ngx_home}/uwsgi/
|
|
%define ngx_user_group nginx
|
|
#
|
|
%if %{with systemd}
|
|
%define ngx_pid_path /run/nginx.pid
|
|
%define ngx_lock_path /run/nginx.lock
|
|
%else
|
|
%define ngx_pid_path %{_localstatedir}/run/nginx.pid
|
|
%define ngx_lock_path %{_localstatedir}/run/nginx.lock
|
|
%endif
|
|
%define ngx_doc_dir %{_datadir}/doc/packages/%{name}
|
|
#
|
|
Name: nginx
|
|
Version: 1.15.3
|
|
Release: 0
|
|
%define ngx_fancyindex_version 0.4.2
|
|
%define ngx_fancyindex_module_path ngx-fancyindex-%{ngx_fancyindex_version}
|
|
|
|
%define headers_more_nginx_version 0.33
|
|
%define headers_more_nginx_module_path headers-more-nginx-module-%{headers_more_nginx_version}
|
|
|
|
%define nginx_upstream_check_version 0.3.0
|
|
%define nginx_upstream_check_module_path nginx_upstream_check_module-%{nginx_upstream_check_version}
|
|
|
|
%define nginx_rtmp_version 1.2.1
|
|
%define nginx_rtmp_module_path nginx-rtmp-module-%{nginx_rtmp_version}
|
|
|
|
%define src_install_dir /usr/src/%{name}
|
|
|
|
Summary: A HTTP server and IMAP/POP3 proxy server
|
|
License: BSD-2-Clause
|
|
Group: Productivity/Networking/Web/Proxy
|
|
Url: http://nginx.org/
|
|
Source: http://nginx.org/download/nginx-%{version}.tar.gz
|
|
Source1: nginx.init
|
|
Source2: nginx.logrotate
|
|
Source3: nginx.service
|
|
Source4: https://github.com/aperezdc/ngx-fancyindex/archive/v%{ngx_fancyindex_version}/%{ngx_fancyindex_module_path}.tar.gz
|
|
Source5: https://github.com/openresty/headers-more-nginx-module/archive/v%{headers_more_nginx_version}/%{headers_more_nginx_module_path}.tar.gz
|
|
Source6: https://github.com/yaoweibin/nginx_upstream_check_module/archive/v%{nginx_upstream_check_version}/%{nginx_upstream_check_module_path}.tar.gz
|
|
Source7: https://github.com/arut/nginx-rtmp-module/archive/v%{nginx_rtmp_version}/%{nginx_rtmp_module_path}.tar.gz
|
|
Source100: nginx.rpmlintrc
|
|
Source101: http://nginx.org/download/nginx-%{version}.tar.gz.asc
|
|
Source102: https://nginx.org/keys/mdounin.key#/%{name}.keyring
|
|
# PATCH-FIX-UPSTREAM nginx-1.11.2-no_Werror.patch
|
|
Patch0: nginx-1.11.2-no_Werror.patch
|
|
# PATCH-FIX-OPENSUSE nginx-1.11.2-html.patch
|
|
Patch1: nginx-1.11.2-html.patch
|
|
# PATCH-FIX-UPSTREAM nginx-1.2.4-perl_vendor_install.patch
|
|
Patch2: nginx-1.2.4-perl_vendor_install.patch
|
|
# PATCH-FIX-UPSTREAM fix /etc/nginx/nginx.conf to suit Linux env
|
|
Patch3: nginx-1.6.1-default_config.patch
|
|
# PATCH-FIX-UPSTREAM nginx-aio.patch fix support for Linux AIO
|
|
Patch4: nginx-aio.patch
|
|
# PATCH-FIX-UPSTREAM check_1.9.2+.patch
|
|
Patch5: check_1.9.2+.patch
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: gd-devel
|
|
BuildRequires: libxslt-devel
|
|
BuildRequires: openssl-devel
|
|
BuildRequires: pcre-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: vim
|
|
BuildRequires: zlib-devel
|
|
%requires_eq perl
|
|
Requires(pre): pwdutils
|
|
Recommends: logrotate
|
|
Recommends: vim-plugin-nginx
|
|
Conflicts: otherproviders(nginx)
|
|
Provides: http_daemon
|
|
Provides: httpd
|
|
#
|
|
BuildRequires: libGeoIP-devel
|
|
#
|
|
%if %{with google_perftools}
|
|
BuildRequires: google-perftools-devel
|
|
%endif
|
|
#
|
|
%if %{with libatomic}
|
|
BuildRequires: libatomic-ops-devel
|
|
%endif
|
|
#
|
|
%if %{with systemd}
|
|
BuildRequires: pkgconfig(systemd)
|
|
%{?systemd_requires}
|
|
%else
|
|
Requires(pre): %fillup_prereq
|
|
Requires(pre): %insserv_prereq
|
|
%endif
|
|
|
|
%description
|
|
nginx [engine x] is a HTTP server and IMAP/POP3 proxy server written by Igor Sysoev.
|
|
It has been running on many heavily loaded Russian sites for more than two years.
|
|
|
|
%package -n vim-plugin-nginx
|
|
Summary: VIM support for nginx config files
|
|
Group: Productivity/Editors/Vi
|
|
%if 0%{?suse_version} > 1110
|
|
BuildArch: noarch
|
|
%endif
|
|
%requires_eq vim
|
|
%description -n vim-plugin-nginx
|
|
nginx [engine x] is a HTTP server and IMAP/POP3 proxy server written by Igor Sysoev.
|
|
It has been running on many heavily loaded Russian sites for more than two years.
|
|
|
|
This package holds the VIM support for nginx config files.
|
|
|
|
%package -n nginx-source
|
|
Summary: The nginx source
|
|
Group: Development/Sources
|
|
BuildArch: noarch
|
|
|
|
%description -n nginx-source
|
|
The source of nginx [engine x] HTTP server and IMAP/POP3 proxy server.
|
|
|
|
%prep
|
|
%setup -q -n %{pkg_name}-%{version} -a 4 -a 5 -a 6 -a 7
|
|
%patch0 -p1
|
|
%patch1 -p1
|
|
%patch2
|
|
%patch3
|
|
%patch4 -p1
|
|
%if %{with extra_modules}
|
|
%patch5
|
|
%endif
|
|
|
|
perl -pi -e 's|\r\n|\n|g' contrib/geo2nginx.pl
|
|
# we just use lib here because nginx loads them relative to _prefix
|
|
perl -pi -e 's|#LIBDIR#|%{_lib}|g' conf/nginx.conf
|
|
|
|
%if %{with systemd}
|
|
sed -i "s/\/var\/run/\/run/" conf/nginx.conf
|
|
%endif
|
|
|
|
%build
|
|
./configure \
|
|
--prefix=%{ngx_prefix}/ \
|
|
--sbin-path=%{ngx_sbin_path} \
|
|
--modules-path=%{ngx_module_dir} \
|
|
--conf-path=%{ngx_conf_path} \
|
|
--error-log-path=%{ngx_error_log} \
|
|
--http-log-path=%{ngx_access_log} \
|
|
--pid-path=%{ngx_pid_path} \
|
|
--lock-path=%{ngx_lock_path} \
|
|
--http-client-body-temp-path=%{ngx_tmp_http} \
|
|
--http-proxy-temp-path=%{ngx_tmp_proxy} \
|
|
--http-fastcgi-temp-path=%{ngx_tmp_fcgi} \
|
|
--http-uwsgi-temp-path=%{ngx_tmp_uwsgi} \
|
|
--http-scgi-temp-path=%{ngx_tmp_scgi} \
|
|
--user=nginx --group=nginx \
|
|
--without-select_module \
|
|
--without-poll_module \
|
|
--with-threads \
|
|
--with-file-aio \
|
|
--with-ipv6 \
|
|
--with-http_ssl_module \
|
|
%if %{with http2}
|
|
--with-http_v2_module \
|
|
%endif
|
|
--with-http_realip_module \
|
|
--with-http_addition_module \
|
|
--with-http_xslt_module=dynamic \
|
|
--with-http_image_filter_module=dynamic \
|
|
--with-http_geoip_module=dynamic \
|
|
--with-http_sub_module \
|
|
--with-http_dav_module \
|
|
--with-http_flv_module \
|
|
--with-http_mp4_module \
|
|
--with-http_gunzip_module \
|
|
--with-http_gzip_static_module \
|
|
--with-http_auth_request_module \
|
|
--with-http_random_index_module \
|
|
--with-http_secure_link_module \
|
|
--with-http_degradation_module \
|
|
--with-http_slice_module \
|
|
--with-http_stub_status_module \
|
|
--with-http_perl_module=dynamic \
|
|
--with-perl=%{_bindir}/perl \
|
|
--with-mail=dynamic \
|
|
--with-mail_ssl_module \
|
|
--with-stream=dynamic \
|
|
--with-stream_ssl_module \
|
|
--with-stream_realip_module \
|
|
--with-stream_geoip_module=dynamic \
|
|
--with-stream_ssl_preread_module \
|
|
--with-pcre \
|
|
%if %{with pcre_jit}
|
|
--with-pcre-jit \
|
|
%endif
|
|
%if %{with libatomic}
|
|
--with-libatomic \
|
|
%endif
|
|
%if %{with google_perftools}
|
|
--with-google_perftools_module \
|
|
%endif
|
|
%if %{with cpp_test}
|
|
--with-cpp_test_module \
|
|
%endif
|
|
--with-compat \
|
|
%if %{with extra_modules}
|
|
--add-module=%{nginx_upstream_check_module_path} \
|
|
--add-dynamic-module=%{ngx_fancyindex_module_path} \
|
|
--add-dynamic-module=%{headers_more_nginx_module_path} \
|
|
--add-dynamic-module=%{nginx_rtmp_module_path} \
|
|
%endif
|
|
%if 0%{?suse_version} > 1220
|
|
--with-cc-opt="%{optflags} -fPIC -D_GNU_SOURCE -std=gnu99 -fstack-protector" \
|
|
--with-ld-opt="-Wl,-z,relro,-z,now -pie"
|
|
%else
|
|
--with-cc-opt="%{optflags}"
|
|
%endif
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%make_install
|
|
%perl_process_packlist
|
|
|
|
install -d -m 0750 %{buildroot}%{ngx_home}/{,tmp,proxy,fastcgi,scgi,uwsgi}
|
|
|
|
install -D -m 0644 %{SOURCE2} %{buildroot}%{_sysconfdir}/logrotate.d/%{pkg_name}
|
|
|
|
%if %{with systemd}
|
|
install -D -m 0644 %{SOURCE3} %{buildroot}%{_unitdir}/nginx.service
|
|
ln -s -f %{_sbindir}/service %{buildroot}%{_sbindir}/rcnginx
|
|
%else
|
|
install -D -m 0755 %{SOURCE1} %{buildroot}%{_sysconfdir}/init.d/%{pkg_name}
|
|
ln -s -f %{_sysconfdir}/init.d/%{pkg_name} %{buildroot}%{_sbindir}/rc%{pkg_name}
|
|
%endif
|
|
|
|
rm %{buildroot}/srv/www/htdocs/index.html
|
|
|
|
mkdir -p %{buildroot}%{ngx_doc_dir}
|
|
cp -av CHANGES* LICENSE \
|
|
%{buildroot}%{ngx_doc_dir}
|
|
|
|
mkdir -p %{buildroot}%{vim_data_dir}/
|
|
cp -av contrib/vim/* \
|
|
%{buildroot}%{vim_data_dir}/
|
|
|
|
mkdir -p %{buildroot}%{_datadir}/nginx/
|
|
mkdir -p %{buildroot}%{ngx_conf_dir}/vhosts.d/
|
|
mkdir -p %{buildroot}%{ngx_conf_dir}/conf.d/
|
|
|
|
chmod a+rx contrib/geo2nginx.pl
|
|
cp -av contrib/geo2nginx.pl contrib/unicode2nginx/ \
|
|
%{buildroot}%{_datadir}/nginx/
|
|
|
|
mkdir -p %{buildroot}%{src_install_dir}
|
|
tar -xzf %{SOURCE0} --strip-components=1 -C %{buildroot}%{src_install_dir}
|
|
|
|
copydocs() {
|
|
subdir=$1;
|
|
shift;
|
|
mkdir -p %{buildroot}%{ngx_doc_dir}/$subdir/
|
|
pushd $subdir
|
|
cp -av $* %{buildroot}%{ngx_doc_dir}/$subdir/
|
|
popd
|
|
}
|
|
|
|
copydocs %{ngx_fancyindex_module_path} \
|
|
template* LICENSE *.rst
|
|
|
|
copydocs %{headers_more_nginx_module_path} \
|
|
README.markdown
|
|
|
|
copydocs %{nginx_upstream_check_module_path} \
|
|
doc/*
|
|
|
|
copydocs %{nginx_rtmp_module_path} \
|
|
AUTHORS LICENSE README.md stat.xsl
|
|
|
|
%post
|
|
%if %{with systemd}
|
|
%service_add_post nginx.service
|
|
%else
|
|
%fillup_and_insserv %{pkg_name}
|
|
%endif
|
|
|
|
%preun
|
|
%if %{with systemd}
|
|
%service_del_preun nginx.service
|
|
%else
|
|
%stop_on_removal %{pkg_name}
|
|
%endif
|
|
|
|
%postun
|
|
%if %{with systemd}
|
|
%service_del_postun nginx.service
|
|
%else
|
|
%restart_on_update %{pkg_name}
|
|
%insserv_cleanup
|
|
%endif
|
|
|
|
%pre
|
|
%{_sbindir}/groupadd -r %{ngx_user_group} &>/dev/null ||:
|
|
%{_sbindir}/useradd -g %{ngx_user_group} -s /bin/false -r -c "user for %{ngx_user_group}" -d %{ngx_home} %{ngx_user_group} &>/dev/null ||:
|
|
|
|
%if %{with systemd}
|
|
%service_add_pre nginx.service
|
|
%endif
|
|
|
|
%files
|
|
%dir %{ngx_conf_dir}/
|
|
%dir %{ngx_conf_dir}/vhosts.d
|
|
%dir %{ngx_conf_dir}/conf.d
|
|
%config(noreplace) %{ngx_conf_dir}/koi-utf
|
|
%config(noreplace) %{ngx_conf_dir}/koi-win
|
|
%config(noreplace) %{ngx_conf_dir}/fastcgi_params
|
|
%config %{ngx_conf_dir}/fastcgi_params.default
|
|
%config(noreplace) %{ngx_conf_dir}/mime.types
|
|
%config %{ngx_conf_dir}/mime.types.default
|
|
%config(noreplace) %{ngx_conf_dir}/nginx.conf
|
|
%config %{ngx_conf_dir}/nginx.conf.default
|
|
%config(noreplace) %{ngx_conf_dir}/fastcgi.conf
|
|
%config %{ngx_conf_dir}/fastcgi.conf.default
|
|
%config(noreplace) %{ngx_conf_dir}/win-utf
|
|
%config(noreplace) %{ngx_conf_dir}/scgi_params
|
|
%config %{ngx_conf_dir}/scgi_params.default
|
|
%config(noreplace) %{ngx_conf_dir}/uwsgi_params
|
|
%config %{ngx_conf_dir}/uwsgi_params.default
|
|
%{perl_vendorarch}/auto/nginx/
|
|
%{perl_vendorarch}/nginx.pm
|
|
%{ngx_sbin_path}
|
|
%dir %{_libdir}/nginx/
|
|
%dir %{ngx_module_dir}/
|
|
%{ngx_module_dir}/ngx_http_geoip_module.so
|
|
%{ngx_module_dir}/ngx_http_image_filter_module.so
|
|
%{ngx_module_dir}/ngx_http_perl_module.so
|
|
%{ngx_module_dir}/ngx_http_xslt_filter_module.so
|
|
%{ngx_module_dir}/ngx_mail_module.so
|
|
%{ngx_module_dir}/ngx_stream_module.so
|
|
%{ngx_module_dir}/ngx_stream_geoip_module.so
|
|
# external modules
|
|
%if %{with extra_modules}
|
|
%{ngx_module_dir}/ngx_http_fancyindex_module.so
|
|
%{ngx_module_dir}/ngx_http_headers_more_filter_module.so
|
|
%{ngx_module_dir}/ngx_rtmp_module.so
|
|
%endif
|
|
%{_mandir}/man3/nginx.3pm*
|
|
/srv/www/htdocs/50x.html
|
|
%if 0%{?suse_version} && 0%{?suse_version} < 1140
|
|
%{_localstatedir}/adm/perl-modules/%{name}
|
|
%endif
|
|
%{_sbindir}/rc%{pkg_name}
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d/%{pkg_name}
|
|
%dir %attr(750,%{ngx_user_group},%{ngx_user_group}) %{_localstatedir}/log/nginx/
|
|
%dir %attr(750,%{ngx_user_group},%{ngx_user_group}) %{ngx_home}/
|
|
%dir %attr(750,%{ngx_user_group},%{ngx_user_group}) %{ngx_tmp_http}
|
|
%dir %attr(750,%{ngx_user_group},%{ngx_user_group}) %{ngx_tmp_proxy}
|
|
%dir %attr(750,%{ngx_user_group},%{ngx_user_group}) %{ngx_tmp_fcgi}
|
|
%dir %attr(750,%{ngx_user_group},%{ngx_user_group}) %{ngx_tmp_scgi}
|
|
%dir %attr(750,%{ngx_user_group},%{ngx_user_group}) %{ngx_tmp_uwsgi}
|
|
%doc %{ngx_doc_dir}
|
|
%if %{with systemd}
|
|
%{_unitdir}/nginx.service
|
|
%else
|
|
%{_sysconfdir}/init.d/%{pkg_name}
|
|
%endif
|
|
%{_datadir}/nginx/
|
|
|
|
%files -n vim-plugin-nginx
|
|
%license LICENSE
|
|
%dir %{vim_data_dir}/ftdetect/
|
|
%{vim_data_dir}/ftdetect/nginx.vim
|
|
%{vim_data_dir}/ftplugin/nginx.vim
|
|
%{vim_data_dir}/indent/nginx.vim
|
|
%{vim_data_dir}/syntax/nginx.vim
|
|
|
|
%files -n nginx-source
|
|
%{src_install_dir}
|
|
|
|
%changelog
|