events/nginx.conf
2026-07-06 22:10:20 +05:30

15 lines
244 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location ~ "^/([0-9]{4})/?$" {
return 302 "https://events.neeldhara.com/?year=$1#events";
}
location / {
try_files $uri $uri/ =404;
}
}