nginx_build_script : re-init compile w/ lua
This commit is contained in:
parent
8686d712b7
commit
0cf3d8613a
@ -31,22 +31,21 @@ make
|
|||||||
sudo make install
|
sudo make install
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
# Whoops! Openresty doesn't support QUIC yet!
|
|
||||||
# lua-nginx-module buildup part (Big Part)
|
# lua-nginx-module buildup part (Big Part)
|
||||||
#
|
#
|
||||||
## mkdir nginx-lua && cd nginx-lua
|
mkdir nginx-lua && cd nginx-lua
|
||||||
## mkdir -p /opt/nginx-lua-module/
|
mkdir -p /opt/nginx-lua-module/
|
||||||
## git clone https://github.com/openresty/lua-resty-core
|
git clone https://github.com/openresty/lua-resty-core
|
||||||
## git clone https://github.com/openresty/lua-resty-lrucache
|
git clone https://github.com/openresty/lua-resty-lrucache
|
||||||
## git clone https://github.com/openresty/luajit2
|
git clone https://github.com/openresty/luajit2
|
||||||
##
|
|
||||||
## cd luajit2 && make install PREFIX=/opt/nginx-lua-module/luajit2 && cd ..
|
cd luajit2 && make install PREFIX=/opt/nginx-lua-module/luajit2 && cd ..
|
||||||
## cd lua-resty-core && make install PREFIX=/opt/nginx-lua-module/ && cd ..
|
cd lua-resty-core && make install PREFIX=/opt/nginx-lua-module/ && cd ..
|
||||||
## cd lua-resty-lrucache && make install PREFIX=/opt/nginx-lua-module/ && cd ..
|
cd lua-resty-lrucache && make install PREFIX=/opt/nginx-lua-module/ && cd ..
|
||||||
## cd ..
|
cd ..
|
||||||
##
|
|
||||||
## export LUAJIT_LIB=/opt/nginx-lua-module/luajit2/lib
|
export LUAJIT_LIB=/opt/nginx-lua-module/luajit2/lib
|
||||||
## export LUAJIT_INC=/opt/nginx-lua-module/luajit2/include/luajit-2.1
|
export LUAJIT_INC=/opt/nginx-lua-module/luajit2/include/luajit-2.1
|
||||||
|
|
||||||
# Build Nginx
|
# Build Nginx
|
||||||
|
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
--with-cc-opt="-I../boringssl/include" \
|
--with-cc-opt="-I../boringssl/include" \
|
||||||
--with-ld-opt="-L../boringssl/build/ssl \
|
--with-ld-opt="-L../boringssl/build/ssl \
|
||||||
-L../boringssl/build/crypto" \
|
-L../boringssl/build/crypto" \
|
||||||
|
-Wl,-rpath,/opt/nginx-lua-module/luajit2/lib" \
|
||||||
--prefix=/usr/share/nginx \
|
--prefix=/usr/share/nginx \
|
||||||
--conf-path=/etc/nginx/nginx.conf \
|
--conf-path=/etc/nginx/nginx.conf \
|
||||||
--http-log-path=/var/log/nginx/access.log \
|
--http-log-path=/var/log/nginx/access.log \
|
||||||
@ -48,6 +49,8 @@
|
|||||||
--add-dynamic-module=mosc/nginx-dav-ext-module \
|
--add-dynamic-module=mosc/nginx-dav-ext-module \
|
||||||
--add-dynamic-module=mosc/echo-nginx-module \
|
--add-dynamic-module=mosc/echo-nginx-module \
|
||||||
--add-dynamic-module=mosc/ModSecurity-nginx \
|
--add-dynamic-module=mosc/ModSecurity-nginx \
|
||||||
|
--add-dynamic-module=mosc/lua-nginx-module \
|
||||||
|
--add-dynamic-module=mosc/ngx_devel_kit \
|
||||||
--with-http_v3_module \
|
--with-http_v3_module \
|
||||||
--with-http_geoip_module \
|
--with-http_geoip_module \
|
||||||
--with-stream_geoip_module
|
--with-stream_geoip_module
|
@ -4,5 +4,5 @@ load_module /lib/nginx/modules/ngx_http_dav_ext_module.so;
|
|||||||
load_module /lib/nginx/modules/ngx_http_echo_module.so;
|
load_module /lib/nginx/modules/ngx_http_echo_module.so;
|
||||||
load_module /lib/nginx/modules/ngx_http_headers_more_filter_module.so;
|
load_module /lib/nginx/modules/ngx_http_headers_more_filter_module.so;
|
||||||
load_module /lib/nginx/modules/ngx_http_modsecurity_module.so;
|
load_module /lib/nginx/modules/ngx_http_modsecurity_module.so;
|
||||||
# load_module /lib/nginx/modules/ndk_http_module.so;
|
load_module /lib/nginx/modules/ndk_http_module.so;
|
||||||
# load_module /lib/nginx/modules/ngx_http_lua_module.so;
|
load_module /lib/nginx/modules/ngx_http_lua_module.so;
|
@ -4,5 +4,5 @@ git clone https://github.com/arut/nginx-dav-ext-module/
|
|||||||
git clone https://github.com/openresty/echo-nginx-module
|
git clone https://github.com/openresty/echo-nginx-module
|
||||||
git clone https://github.com/nginx-modules/ngx_cache_purge
|
git clone https://github.com/nginx-modules/ngx_cache_purge
|
||||||
git clone https://github.com/SpiderLabs/ModSecurity-nginx
|
git clone https://github.com/SpiderLabs/ModSecurity-nginx
|
||||||
# git clone https://github.com/openresty/lua-nginx-module
|
git clone https://github.com/openresty/lua-nginx-module
|
||||||
# git clone https://github.com/vision5/ngx_devel_kit
|
git clone https://github.com/vision5/ngx_devel_kit
|
Loading…
Reference in New Issue
Block a user