summaryrefslogtreecommitdiffstats
path: root/docker/storperf-graphite/etc/nginx/nginx.conf
blob: f2ab7f75c3392a902792fb8dcc56389e9f0e4ab7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
worker_processes  1;
pid /var/run/nginx.pid;
daemon off;

events {
  worker_connections 1024;
  use epoll;
}

http {
  include       mime.types;
  default_type  application/octet-stream;

  sendfile        on;
  keepalive_timeout  65;

  gzip  on;

  include /etc/nginx/conf.d/*;
}