add script for creating VM image

This commit is contained in:
Artur Gurgul1 2025-08-09 18:10:34 +02:00
parent 9c3189544a
commit 75c3228c5e
8 changed files with 196 additions and 2 deletions

23
recipes/nginx/debian.yml Normal file
View file

@ -0,0 +1,23 @@
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