We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e3fcaf commit c9c98f7Copy full SHA for c9c98f7
nginx-build.sh
@@ -713,7 +713,11 @@ _patch_nginx() {
713
echo -ne ' Applying nginx patches [..]\r'
714
715
{
716
- curl -sL https://raw.githubusercontent.com/kn007/patch/refs/heads/master/nginx_dynamic_tls_records.patch | patch -p1
+ if [ "$NGINX_RELEASE" = "2" ]; then
717
+ curl -sL https://raw.githubusercontent.com/kn007/patch/e2fcf45e320bb8317042b6796b8f9dd42ffdb25c/nginx_dynamic_tls_records.patch | patch -p1
718
+ else
719
+ curl -sL https://raw.githubusercontent.com/kn007/patch/refs/heads/master/nginx_dynamic_tls_records.patch | patch -p1
720
+ fi
721
} >>/tmp/nginx-ee.log 2>&1
722
723
}; then
0 commit comments