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
This commit is contained in:
azurejelly 2025-10-26 20:11:35 -04:00
parent 7832b6a43d
commit 6411a0b5b0
No known key found for this signature in database
GPG Key ID: 78C7CB2FBB62D96D
1 changed files with 0 additions and 15 deletions

View File

@ -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;
}