summaryrefslogtreecommitdiffhomepage
path: root/images/benchmarks/nginx/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'images/benchmarks/nginx/nginx.conf')
-rw-r--r--images/benchmarks/nginx/nginx.conf19
1 files changed, 0 insertions, 19 deletions
diff --git a/images/benchmarks/nginx/nginx.conf b/images/benchmarks/nginx/nginx.conf
deleted file mode 100644
index 2c43c0cda..000000000
--- a/images/benchmarks/nginx/nginx.conf
+++ /dev/null
@@ -1,19 +0,0 @@
-user nginx;
-worker_processes 1;
-daemon off;
-
-error_log /var/log/nginx/error.log warn;
-pid /var/run/nginx.pid;
-
-events {
- worker_connections 1024;
-}
-
-
-http {
- server {
- location / {
- root /tmp/html;
- }
- }
-}