aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/bash/function/nginx.sh
diff options
context:
space:
mode:
Diffstat (limited to 'resources/libraries/bash/function/nginx.sh')
-rwxr-xr-xresources/libraries/bash/function/nginx.sh2
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!"