ModSecurity/tests/regression/nginx/conf/nginx.conf.template
2013-03-31 15:25:24 +08:00

23 lines
277 B
Plaintext

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 / {
}
}
}