diff options
author | 2025-02-04 14:17:51 +0100 | |
---|---|---|
committer | 2025-02-04 14:17:51 +0100 | |
commit | 528fa294d4e60c6c9dbc122057f95160a3becd8a (patch) | |
tree | 3efd1bfa68d95bf77148ba252966012c7409ade8 /resources | |
parent | 523c8c12cb8d0f1f2b3ebb7f012e1d7d5a9b4934 (diff) |
refix(infra): NGINX install
Signed-off-by: Peter Mikus <peter.mikus@icloud.com>
Change-Id: I66482d79734758f45c99f67d34273a5524a213b0
Diffstat (limited to 'resources')
-rwxr-xr-x | resources/libraries/bash/function/nginx.sh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/resources/libraries/bash/function/nginx.sh b/resources/libraries/bash/function/nginx.sh index 37c7be65ec..8c898ecf40 100755 --- a/resources/libraries/bash/function/nginx.sh +++ b/resources/libraries/bash/function/nginx.sh @@ -108,8 +108,6 @@ function nginx_compile () { param+="--with-pcre " # Enable ngx_http_realip_module. param+="--with-http_realip_module " - # Disable http_rewrite_module - param+="--without-http_rewrite_module " params=(${param}) ./configure "${params[@]}" || die "Failed to configure NGINX!" make -j 16;make install || die "Failed to compile NGINX!" |