aboutsummaryrefslogtreecommitdiff
path: root/nginx/homepage-testing.conf
blob: dce93899f79791ddc5b360d56e2d79cd1657dfd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# http server
server {
	listen 80 ;
	listen [::]:80 ;
	server_name jackjamison.xyz; 

	location / {
		root /var/www/homepage;
		index index.html;
		error_page 404 404.html;
		try_files $uri $uri/ =404;
	}
}