From c8cfa293c055d85f45bba4847e241273eb798336 Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Thu, 31 Mar 2022 14:39:11 +1000 Subject: [PATCH] Disable lua-resty-http lua plugin and Crowdsec-Openresty-Bouncer due to memory issues --- docker/Dockerfile | 1 - scripts/install-openresty | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index d47aa17..3226450 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -88,7 +88,6 @@ RUN apt-get update \ && apt-get install -y gcc make socat git \ && /tmp/install-lua \ && /tmp/install-openresty \ - && /tmp/install-crowdsec_openresty_bouncer \ && apt-get remove -y make gcc git wget gettext \ && apt-get autoremove -y \ && apt-get clean \ diff --git a/scripts/install-openresty b/scripts/install-openresty index 81d76bf..617c734 100755 --- a/scripts/install-openresty +++ b/scripts/install-openresty @@ -19,6 +19,6 @@ echo -e "${BLUE}❯ ${CYAN}Installing OpenResty plugins...${RESET}" cd / luarocks install lua-cjson luarocks install lua-resty-openidc -luarocks install lua-resty-http +#luarocks install lua-resty-http echo -e "${BLUE}❯ ${GREEN}OpenResty plugins install completed${RESET}"