Changed submodule. (rtmp -> flv)

This commit is contained in:
2019-01-15 09:29:52 +09:00
parent 1a812507f9
commit 0c8665df5a
6 changed files with 8 additions and 9 deletions
+3 -4
View File
@@ -7,9 +7,6 @@
[submodule "lib/nginx-dav-ext-module"]
path = lib/nginx-dav-ext-module
url = https://github.com/arut/nginx-dav-ext-module.git
[submodule "lib/nginx-rtmp-module"]
path = lib/nginx-rtmp-module
url = https://github.com/arut/nginx-rtmp-module.git
[submodule "lib/ngx_brotli"]
path = lib/ngx_brotli
url = https://github.com/eustas/ngx_brotli.git
@@ -29,10 +26,12 @@
path = lib/zlib
url = https://github.com/cloudflare/zlib.git
branch = gcc.amd64
[submodule "lib/ngx_http_geoip2_module"]
path = lib/ngx_http_geoip2_module
url = https://github.com/leev/ngx_http_geoip2_module.git
[submodule "lib/nginx-module-vts"]
path = lib/nginx-module-vts
url = https://github.com/vozlt/nginx-module-vts
[submodule "lib/nginx-http-flv-module"]
path = lib/nginx-http-flv-module
url = https://github.com/winshining/nginx-http-flv-module.git
+1 -1
View File
@@ -94,7 +94,7 @@ TEMP_OPT="-lm"
### Module check
if [ "$PAGESPEED" = 1 ]; then BUILD_MODULES="--add-module=./lib/pagespeed ${PS_NGX_EXTRA_FLAGS}"; fi
if [ "$RTMP" = 1 ]; then BUILD_MODULES="${BUILD_MODULES} --add-module=./lib/nginx-rtmp-module"; fi
if [ "$FLV" = 1 ]; then BUILD_MODULES="${BUILD_MODULES} --add-module=./lib/nginx-http-flv-module"; fi
if [ "$NAXSI" = 1 ]; then BUILD_MODULES="${BUILD_MODULES} --add-module=./lib/naxsi/naxsi_src"; fi
if [ "$DAV_EXT" = 1 ]; then BUILD_MODULES="${BUILD_MODULES} --add-module=./lib/nginx-dav-ext-module"; fi
if [ "$FANCYINDEX" = 1 ]; then BUILD_MODULES="${BUILD_MODULES} --add-module=./lib/ngx-fancyindex"; fi
+2 -2
View File
@@ -32,8 +32,8 @@ LTO=1
### PageSpeed
PAGESPEED=0
### nginx-rtmp-module
RTMP=0
### nginx-http-flv-module
FLV=0
### naxsi
NAXSI=1