From 494dedf17035c1699c35cd2559f15a64eaa7eff3 Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Sun, 1 Nov 2020 20:01:35 +0200 Subject: Initial commit --- templates/nginx.rst | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 templates/nginx.rst (limited to 'templates/nginx.rst') diff --git a/templates/nginx.rst b/templates/nginx.rst new file mode 100644 index 0000000..1fd314d --- /dev/null +++ b/templates/nginx.rst @@ -0,0 +1,24 @@ +worker_processes 1; + +events { + worker_connections 1024; +} + + +http { + include mime.types; + default_type application/octet-stream; + + sendfile on; + keepalive_timeout 65; + + server { + listen 8080; + server_name localhost; + + location / { + root html; + index index.html index.htm; + } + } +} -- cgit v1.2.3