nginx: small cleanup

This commit is contained in:
Leah Neukirchen 2022-11-02 13:58:45 +01:00
parent 607cb5e54a
commit 95558731f9

View file

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