environment/recipes/nginx/debian.yml
2025-08-09 18:10:34 +02:00

23 lines
407 B
YAML

packages:
- build-essential
- libpcre3
- libpcre3-dev
- zlib1g
- zlib1g-dev
- libssl-dev
repository:
url: https://github.com/nginx/nginx.git
branch: release-1.29.0
version: 1.29.0
build:
- ./configure \|
--prefix=$PREFIX \|
--with-http_ssl_module \|
--with-http_gzip_static_module
--with-stream
--with-http_v2_module
- make
- $SUDO make install