diff options
Diffstat (limited to 'nginx.conf')
-rw-r--r-- | nginx.conf | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..257c568 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,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; + } +}
\ No newline at end of file |