1
0
forked from noxious/client
noxious_client/nginx.conf
2024-10-18 19:45:25 +02:00

16 lines
301 B
Nginx Configuration File

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