From c3fc69022afdbc1085c9b122a084168afa25cb80 Mon Sep 17 00:00:00 2001 From: Zach Koopmans Date: Thu, 24 Sep 2020 10:29:59 -0700 Subject: Fix Nginx Startup and Size Benchmarks. Changes in Nginx Benchmarks in network_tests also affect Startup/Size Nginx Benchmarks. Make sure the commands line up. PiperOrigin-RevId: 333543697 --- images/benchmarks/nginx/Dockerfile | 1 + images/benchmarks/nginx/nginx_gofer.conf | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 images/benchmarks/nginx/nginx_gofer.conf (limited to 'images') diff --git a/images/benchmarks/nginx/Dockerfile b/images/benchmarks/nginx/Dockerfile index 2444d04b1..c8e3330d0 100644 --- a/images/benchmarks/nginx/Dockerfile +++ b/images/benchmarks/nginx/Dockerfile @@ -9,3 +9,4 @@ RUN mkdir -p /local && \ RUN touch /local/index.html COPY ./nginx.conf /etc/nginx/nginx.conf +COPY ./nginx_gofer.conf /etc/nginx/nginx_gofer.conf diff --git a/images/benchmarks/nginx/nginx_gofer.conf b/images/benchmarks/nginx/nginx_gofer.conf new file mode 100644 index 000000000..dbba2a575 --- /dev/null +++ b/images/benchmarks/nginx/nginx_gofer.conf @@ -0,0 +1,19 @@ +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 /local; + } + } +} -- cgit v1.2.3