瀏覽代碼

去除 nginx 的 pcre-jit 编译选项

zjcqoo 6 年之前
父節點
當前提交
11171c2f4e
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      setup-nginx.sh

+ 1 - 2
setup-nginx.sh

@@ -1,4 +1,4 @@
-# 
+# 无需 root 运行
 curl -O https://openresty.org/download/openresty-1.15.8.1rc1.tar.gz
 tar zxvf openresty-*
 cd openresty-*
@@ -6,7 +6,6 @@ cd openresty-*
 ./configure \
   --with-http_v2_module \
   --with-http_ssl_module \
-  --with-pcre-jit \
   --prefix=/home/jsproxy/openresty
 
 make