Add Nginx config files to repo

Allows us to edit redirects and headers locally.
This commit is contained in:
2019-08-11 22:12:19 -05:00
parent 98bca69952
commit 7daa208815
6 changed files with 25 additions and 6 deletions

12
nginx/020-redirects.conf Normal file
View File

@ -0,0 +1,12 @@
location = /old/ {
return 301 /classic/;
}
location = /software/im/ {
return 301 /software/real-time-communication/;
}
location = /software/voip/ {
return 301 /software/real-time-communication/;
}
location = /software/teamchat/ {
return 301 /software/real-time-communication/;
}