19 lines
349 B
Nginx Configuration File
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;
|
|
}
|
|
}
|