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

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