summaryrefslogtreecommitdiff
path: root/nginx.conf
blob: 3b95022d6f3c05b629278ab7f1ddfb6b05df609f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 /;
		}
	}
}