aboutsummaryrefslogtreecommitdiffstats
path: root/templates/nginx.rst
diff options
context:
space:
mode:
Diffstat (limited to 'templates/nginx.rst')
-rw-r--r--templates/nginx.rst24
1 files changed, 24 insertions, 0 deletions
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;
+ }
+ }
+}