events/nginx.conf
2026-07-06 23:13:42 +05:30

19 lines
349 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 = /gh-cost-estimator {
return 301 "https://events.neeldhara.com/gh-cost-estimator/";
}
location / {
try_files $uri $uri/ =404;
}
}