From b554843d9203a3d8dd477e8aaa511702e0cc186e Mon Sep 17 00:00:00 2001
From: hzrd149 <github@hzrd149.com>
Date: Wed, 25 Sep 2024 16:06:51 -0500
Subject: [PATCH] small fixes

---
 nginx/default.conf | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/nginx/default.conf b/nginx/default.conf
index c946f5f..3f45859 100644
--- a/nginx/default.conf
+++ b/nginx/default.conf
@@ -1,5 +1,6 @@
 server {
 	listen 80;
+	listen [::]:80;
 	server_name nsite-proxy;
 
 	location / {
@@ -15,7 +16,7 @@ server {
 		expires 30d;
 		add_header Cache-Control "public, no-transform";
 
-    proxy_set_header Host $host;
+		proxy_set_header Host $host;
 		proxy_pass http://nsite;
 	}