ngx_http_tls_dyn_size icon indicating copy to clipboard operation
ngx_http_tls_dyn_size copied to clipboard

How to apply ?

Open somerandomuserim opened this issue 1 year ago • 0 comments
trafficstars

Sorry for noob question... im using nginx ee to build nginx. `_patch_nginx() {

cd /usr/local/src/nginx || exit 1
if {
    echo -ne '       Applying nginx patches                 [..]\r'

    {

        curl -sL "https://raw.githubusercontent.com/kn007/patch/master/nginx.patch" | patch -p1
        #curl -sL https://raw.githubusercontent.com/kn007/patch/master/nginx_auto_using_PRIORITIZE_CHACHA.patch | patch -p1
    } >>/tmp/nginx-ee.log 2>&1

}; then
    echo -ne "       Applying nginx patches                 [${CGREEN}OK${CEND}]\\r"
    echo -ne '\n'
else
    echo -e "       Applying nginx patches                 [${CRED}FAIL${CEND}]"
    echo -e '\n      Please look at /tmp/nginx-ee.log\n'
    exit 1
fi

}` it doesnt work anymore and I dont know how to correct it to apply current patch.

somerandomuserim avatar Apr 02 '24 20:04 somerandomuserim