summaryrefslogtreecommitdiff
path: root/test/e2e/containers/git/etc/nginx/nginx.conf
blob: f49a937094e73f0421d7553f9c0c3049341f74bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
user                    nginx;
worker_processes        4;
pid                     /run/nginx.pid;

events {
	worker_connections    1024;
}

http {
	sendfile              on;
	tcp_nopush            on;
	tcp_nodelay           on;
	keepalive_timeout     65;
	types_hash_max_size   2048;

	include               /etc/nginx/mime.types;
	default_type          application/octet-stream;

	access_log            /var/log/nginx/access.log;
	error_log             /var/log/nginx/error.log;

	gzip                  on;
	gzip_disable          "msie6";

	include               /etc/nginx/sites-enabled/*;
}


daemon                  off;