summaryrefslogtreecommitdiff
path: root/files/nginx/website
blob: dac54e10081e7dc07c82d2c9bf5763551fcf8c60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
server {
	root /var/www/website ;

	index index.html index.htm index.nginx-debian.html;

	server_name eug-vs.xyz www.eug-vs.xyz;

	location /public/ {
		autoindex on;
	}

	location / {
		try_files $uri $uri/ =404;
	}
}