fix(nginxproxymanager): add missing OpenResty modules for NPM

Add --with-http_sub_module and --with-http_auth_request_module
to OpenResty configure flags. NPM needs auth_request for access
list subrequests and sub_filter for response rewriting.
This commit is contained in:
MickLesk
2026-03-21 19:23:30 +01:00
parent bd5e20237f
commit b4a824b9a1
2 changed files with 4 additions and 0 deletions

View File

@@ -88,6 +88,8 @@ function update_script() {
--with-http_realip_module \
--with-http_stub_status_module \
--with-http_ssl_module \
--with-http_sub_module \
--with-http_auth_request_module \
--with-pcre-jit \
--with-stream \
--with-stream_ssl_module

View File

@@ -50,6 +50,8 @@ $STD ./configure \
--with-http_realip_module \
--with-http_stub_status_module \
--with-http_ssl_module \
--with-http_sub_module \
--with-http_auth_request_module \
--with-pcre-jit \
--with-stream \
--with-stream_ssl_module