environment/recipes/nginx/debian.yml

41 lines
1 KiB
YAML
Raw Normal View History

2025-08-09 18:10:34 +02:00
packages:
- build-essential
2025-09-07 01:03:14 -05:00
- libpcre2-dev
2025-08-09 18:10:34 +02:00
- zlib1g
- zlib1g-dev
- libssl-dev
repository:
url: https://github.com/nginx/nginx.git
branch: release-1.29.0
version: 1.29.0
2025-08-10 11:06:53 +02:00
# TODO: finish the configuration: last message of 6898551e-70a0-8331-8617-bcfc9bcf6af8
steps:
- echo "starting"
- |
./auto/configure \
--prefix=$PREFIX \
--with-http_ssl_module \
--with-http_gzip_static_module \
--with-stream \
--with-http_v2_module \
--with-pcre-jit \
--with-threads \
--with-file-aio \
--with-http_ssl_module \
--with-http_v2_module \
--with-http_gzip_static_module \
--with-stream=dynamic \
--with-stream_ssl_module \
--sbin-path=$PREFIX/nginx/sbin/nginx \
--conf-path=$PREFIX/nginx/conf/nginx.conf \
--pid-path=$PREFIX/nginx/run/nginx.pid \
--lock-path=$PREFIX/nginx/run/nginx.lock \
--error-log-path=$PREFIX/nginx/logs/error.log \
--http-log-path=$PREFIX/nginx/logs/access.log
2025-08-09 18:10:34 +02:00
- make
- $SUDO make install