From a3488904a292dbd22ee474a205d854b46e15e53d Mon Sep 17 00:00:00 2001 From: schneefux Date: Wed, 1 Apr 2015 14:30:35 +0200 Subject: erster Commit --- nginx.conf | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 nginx.conf (limited to 'nginx.conf') diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..3b95022 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,26 @@ +user timo; +worker_processes 1; + +events { + worker_connections 1024; +} + +http { + include mime.types; + default_type application/octet-stream; + + sendfile on; + keepalive_timeout 65; + gzip on; + + server { + listen 80; + server_name localhost; + + location / { + root /home/timo/sync/projects/web/http/nowlan/www/; + index index.html; + error_page 404 =200 /; + } + } +} -- cgit v1.3.1