NGINX Reverse Proxy with ModSecurity
3.9K
Basic NGINX docker image with ModSecurity preconfigured, including the OWASP Core Rule Set.
More info:
Sample nginx.conf file
worker_processes 1;
pid /tmp/nginx.pid;
http {
proxy_temp_path /tmp/proxy_temp;
client_body_temp_path /tmp/client_temp;
fastcgi_temp_path /tmp/fastcgi_temp;
uwsgi_temp_path /tmp/uwsgi_temp;
scgi_temp_path /tmp/scgi_temp;
include mime.types;
default_type application/octet-stream;
server {
...
modsecurity on;
modsecurity_rules_file /etc/nginx/modsecurity.d/include.conf;
...
}
}
Content type
Image
Digest
sha256:a7294355f…
Size
159.4 MB
Last updated
18 days ago
docker pull thib4ut/nginx-modsecurity