From 6411a0b5b0c2e1f319128430b64ff4cf14f65183 Mon Sep 17 00:00:00 2001 From: azurejelly <178000437+azurejelly@users.noreply.github.com> Date: Sun, 26 Oct 2025 20:11:35 -0400 Subject: [PATCH] chore: remove unused nginx.conf file It was moved to `nginx/default.conf` a long time ago, so I'm not sure why this one is still here --- nginx.conf | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf deleted file mode 100644 index b8f487b..0000000 --- a/nginx.conf +++ /dev/null @@ -1,15 +0,0 @@ -server { - listen 80; - server_name vert; - - root /usr/share/nginx/html; - index index.html; - - client_max_body_size 10M; - - location / { - try_files $uri $uri/ /index.html; - } - - error_page 404 /index.html; -} \ No newline at end of file