Removed nginx config

This commit is contained in:
Dennis Postma 2025-02-09 19:58:54 +01:00
parent 2a00e206eb
commit 6de0bb200d

View File

@ -1,16 +0,0 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
# Redirect example
location /discord {
return 301 https://discord.gg/JTev3nzeDa;
}
# Serve static files
location / {
try_files $uri $uri/ /index.html;
}
}