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

    location / {
        root /var/www/homepage;
		index index.html;
		error_page 404 404.html;
    }
}