40 lines
1 KiB
YAML
40 lines
1 KiB
YAML
|
|
packages:
|
|
- build-essential
|
|
- libpcre2-dev
|
|
- zlib1g
|
|
- zlib1g-dev
|
|
- libssl-dev
|
|
|
|
repository:
|
|
url: https://github.com/nginx/nginx.git
|
|
branch: release-1.29.0
|
|
version: 1.29.0
|
|
|
|
# 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
|
|
|
|
- make
|
|
- $SUDO make install
|