Added Nginx regression test

This commit is contained in:
chaizhenhua
2013-03-31 15:25:24 +08:00
parent 088c660d58
commit e9af8a3ab1
3 changed files with 758 additions and 0 deletions

View File

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