summaryrefslogtreecommitdiff
path: root/berowski.com
blob: 61e0d334a738c3e8c377d3ce4713b58684b30420 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
server {
	listen 80 ;
	listen [::]:80 ;
	server_name berowski.com ;
	root /srv/www ;
	index index.html index.htm index.nginx-debian.html ;
#	kill cache > lower performance, rapid updates, ideal for small low-traffic site.
	expires -1;
	location / {
		try_files $uri $uri/ =404 ;
	}
}