From cbe4ff6c019cfd2d513ccf2f9689bd6533896ad1 Mon Sep 17 00:00:00 2001 From: Julio Capote Date: Sat, 11 Feb 2023 22:26:21 -0500 Subject: add nginx config --- nginx.conf | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 nginx.conf 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 -- cgit v1.2.3