aboutsummaryrefslogtreecommitdiff
path: root/utils/nginx-dev.conf
blob: 2620df2959ef6bbc6b38b56546a7897719415114 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
server {
	server_name cmc.pub www.cmc.pub;

	root /usr/share/nginx/html;
	index index.html;
	autoindex on;

	access_log  /var/log/nginx/cmc.pub.access.log;
	error_log  /var/log/nginx/cmc.pub.error.log;

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

	listen [::]:80;
	listen 80;
}