thewca / wca.link

WCA link shortener
https://wca.link
3 stars 4 forks source link

Existing config #4

Closed lgarron closed 5 years ago

lgarron commented 5 years ago

This doesn't include changes for #3.

location / {
  return 302 https://www.worldcubeassociation.org/;
}
location ~ \/([0-9][0-9][0-9][0-9][A-Z][A-Z][A-Z][A-Z][0-9][0-9])$ {
  return 302 https://www.worldcubeassociation.org/persons/$1;
}
location ~ \/([^\/]+)([0-9][0-9][0-9][0-9])$ {
  return 302 https://www.worldcubeassociation.org/competitions/$1$2;
}
location ~ \/(.*)$ {
  return 302 https://www.worldcubeassociation.org/$1;
}