From 208dea1fe86b4c79c714c3927383bcc9abb9b3fe Mon Sep 17 00:00:00 2001 From: JackJ30 Date: Wed, 14 May 2025 20:00:46 -0400 Subject: projects with images --- nginx/homepage-testing.conf | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 nginx/homepage-testing.conf (limited to 'nginx/homepage-testing.conf') diff --git a/nginx/homepage-testing.conf b/nginx/homepage-testing.conf new file mode 100644 index 0000000..dce9389 --- /dev/null +++ b/nginx/homepage-testing.conf @@ -0,0 +1,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; + } +} \ No newline at end of file -- cgit v1.2.3