Merge pull request #436 from hashicorp/sethvargo/redirect_web_ui_downloads

Redirect old WebUI downloads page to new one
This commit is contained in:
Seth Vargo 2014-10-26 22:30:24 -04:00
commit 77218d2a44
1 changed files with 5 additions and 0 deletions

View File

@ -4,6 +4,11 @@ require "rack/contrib/response_headers"
require "rack/contrib/static_cache"
require "rack/contrib/try_static"
require "rake/rewrite"
use Rack::Rewrite do
r301 "/downloads_web_ui.html", "/downloads.html"
end
# Properly compress the output if the client can handle it.
use Rack::Deflater