diff --git a/nginx/Dockerfile b/nginx/Dockerfile index 75f520f..0580bf4 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -61,7 +61,7 @@ RUN set -eux; \ curl -sSL https://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz -o nginx-${NGINX_VERSION}.tar.gz; \ tar -xzf nginx-${NGINX_VERSION}.tar.gz; \ cd ./nginx-${NGINX_VERSION}; \ - ./configure --with-compat --add-dynamic-module=../ModSecurity-nginx --add-module=../headers-more-nginx-module; \ + ./configure --with-compat --add-dynamic-module=../ModSecurity-nginx --add-dynamic-module=../headers-more-nginx-module; \ make modules; \ strip objs/ngx_http_modsecurity_module.so objs/ngx_http_headers_more_filter_module.so; \ cp objs/ngx_http_modsecurity_module.so objs/ngx_http_headers_more_filter_module.so /etc/nginx/modules/; \