nginx: small cleanup

This commit is contained in:
Leah Neukirchen 2022-11-02 13:58:45 +01:00
parent 607cb5e54a
commit 95558731f9
1 changed files with 37 additions and 37 deletions

View File

@ -9,43 +9,43 @@ build_wrksrc="nginx-${version}"
build_style=gnu-makefile
_cfgdir=/etc/nginx
_tmpdir=/var/lib/nginx/tmp
configure_args="--prefix=${_cfgdir} \
--conf-path=${_cfgdir}/nginx.conf \
--sbin-path=/usr/bin/nginx \
--modules-path=/usr/lib/nginx/modules \
--pid-path=/run/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--user=nginx \
--group=nginx \
--http-log-path=/var/log/nginx/access.log \
--error-log-path=/var/log/nginx/error.log \
--http-client-body-temp-path=${_tmpdir}/client-body \
--http-proxy-temp-path=${_tmpdir}/proxy \
--http-fastcgi-temp-path=${_tmpdir}/fastcgi \
--http-scgi-temp-path=${_tmpdir}/scgi \
--http-uwsgi-temp-path=${_tmpdir}/uwsgi \
--with-compat \
--with-file-aio \
--with-http_dav_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_realip_module \
--with-http_ssl_module \
--with-http_slice_module \
--with-http_stub_status_module \
--with-http_sub_module \
--with-http_v2_module \
--with-http_xslt_module=dynamic \
--with-http_geoip_module=dynamic \
--with-http_perl_module=dynamic \
--with-stream=dynamic \
--with-stream_geoip_module=dynamic \
--with-stream_realip_module \
--with-stream_ssl_module \
--with-stream_ssl_preread_module \
--with-mail \
--with-mail_ssl_module \
--with-pcre-jit \
configure_args="--prefix=${_cfgdir}
--conf-path=${_cfgdir}/nginx.conf
--sbin-path=/usr/bin/nginx
--modules-path=/usr/lib/nginx/modules
--pid-path=/run/nginx.pid
--lock-path=/var/lock/nginx.lock
--user=nginx
--group=nginx
--http-log-path=/var/log/nginx/access.log
--error-log-path=/var/log/nginx/error.log
--http-client-body-temp-path=${_tmpdir}/client-body
--http-proxy-temp-path=${_tmpdir}/proxy
--http-fastcgi-temp-path=${_tmpdir}/fastcgi
--http-scgi-temp-path=${_tmpdir}/scgi
--http-uwsgi-temp-path=${_tmpdir}/uwsgi
--with-compat
--with-file-aio
--with-http_dav_module
--with-http_gunzip_module
--with-http_gzip_static_module
--with-http_realip_module
--with-http_ssl_module
--with-http_slice_module
--with-http_stub_status_module
--with-http_sub_module
--with-http_v2_module
--with-http_xslt_module=dynamic
--with-http_geoip_module=dynamic
--with-http_perl_module=dynamic
--with-stream=dynamic
--with-stream_geoip_module=dynamic
--with-stream_realip_module
--with-stream_ssl_module
--with-stream_ssl_preread_module
--with-mail
--with-mail_ssl_module
--with-pcre-jit
--with-threads
--add-dynamic-module=../njs-${_njs_version}/nginx"
hostmakedepends="geoip geoip-devel openssl-devel pcre2-devel perl libxslt-devel