aboutsummaryrefslogtreecommitdiff
path: root/nginx.conf
blob: 257c568e2e345f00e4f6333eb956efa4218fcde1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
server {
	listen 80 default_server;
	listen [::]:80 default_server;

    root /usr/share/nginx/html;

	location / {
        sendfile           on;
        tcp_nopush         on;
        sendfile_max_chunk 1m;
        index index.html;
	}
}