summaryrefslogtreecommitdiff
path: root/templates/default.erb
blob: a243b462d7e6a0f1e274fc83e059fe3ec6bdb903 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
server {
	listen   80; ## listen for ipv4
	#listen   [::]:80 default ipv6only=on; ## listen for ipv6

	server_name  localhost;

	access_log  /dev/null;

	location / {
		root   /var/www/html;
		index  index.html index.htm;
	}
}