Merge pull request #436 from hashicorp/sethvargo/redirect_web_ui_downloads
Redirect old WebUI downloads page to new one
This commit is contained in:
commit
77218d2a44
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue