mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-29 11:16:33 +03:00
Added Nginx regression test
This commit is contained in:
22
tests/regression/nginx/conf/nginx.conf.template
Normal file
22
tests/regression/nginx/conf/nginx.conf.template
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
user root;
|
||||
worker_processes 1;
|
||||
daemon on;
|
||||
error_log logs/error.log debug;
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
http {
|
||||
ModSecurityEnabled [% enable %];
|
||||
ModSecurityConfig [% config %];
|
||||
server {
|
||||
|
||||
listen [% listen %];
|
||||
server_name localhost;
|
||||
location / {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user