add redirects to handle reversed order for install

This commit is contained in:
Daniel Micay 2021-01-27 20:55:52 -05:00
parent a456980c3d
commit 2c3b0f28c0

View File

@ -162,6 +162,14 @@ http {
return 301 /install/web;
}
location = /cli/install {
return 301 /install/cli;
}
location = /web/install {
return 301 /install/web;
}
location = /LICENSE {
return 301 /LICENSE.txt;
}