Skip to content
Snippets Groups Projects

MVP build process

Merged Erick Hitter requested to merge 1-add-build into master
Compare and Show latest version
1 file
+ 4
3
Compare changes
  • Side-by-side
  • Inline
+ 4
3
@@ -37,7 +37,7 @@ export NGINX_CT_DIR
echo "DEPENDENCY: OpenSSL"
git clone -q --recursive --depth 1 https://github.com/openssl/openssl.git -b "$OPENSSL_TAG" "$OPENSSL_DIR"
cd "$OPENSSL_DIR" || exit
./config
./config no-shared
# Dependency: ngx_brotli (no tagged releases)
echo ""
@@ -54,9 +54,10 @@ echo ""
echo "DOWNLOADING & VERIFYING NGINX RELEASE"
cd "$OG_DIR" || exit
curl -o "$NGINX_SRC_ARCHIVE" "$NGINX_SRC"
curl -o "$NGINX_SRC_ARCHIVE_SIGNATURE" "$NGINX_SIGNING"
# Disabled as nginx is signing with individuals' keys.
#curl -o "$NGINX_SRC_ARCHIVE" "$NGINX_SRC"
#curl -o "$NGINX_SRC_ARCHIVE_SIGNATURE" "$NGINX_SIGNING"
#gpg --import <(curl https://nginx.org/keys/nginx_signing.key)
#gpg --verify "$NGINX_SRC_ARCHIVE_SIGNATURE" "$NGINX_SRC_ARCHIVE"
Loading