mirror of
https://github.com/danog/sass-site.git
synced 2024-11-27 12:35:03 +01:00
43 lines
1.4 KiB
Ruby
43 lines
1.4 KiB
Ruby
require "rubygems"
|
|
|
|
require "rack/rewrite"
|
|
require "rack/contrib/not_found"
|
|
require "rack/contrib/try_static"
|
|
|
|
use Rack::Rewrite do
|
|
r301 %r{/docs/yardoc/(.*)}, '/documentation/$1'
|
|
r301 '/tutorial.html', '/guide'
|
|
r301 '/download.html', '/install'
|
|
r301 '/documentation', '/documentation/'
|
|
r301 '/documentation/_index.html', '/documentation/'
|
|
r301 '/try', 'http://sassmeister.com'
|
|
r301 '/try.html', 'http://sassmeister.com'
|
|
r301 '/about', '/'
|
|
r301 '/about.html', '/'
|
|
|
|
r301 '/documentation/file.SASS_REFERENCE.html', '/documentation/'
|
|
r301 '/documentation/file.SASS_CHANGELOG.html', 'https://github.com/sass/dart-sass/blob/master/CHANGELOG.md'
|
|
r301 '/documentation/file.INDENTED_SYNTAX.html', '/documentation/syntax'
|
|
r301 '/documentation/file.SCSS_FOR_SASS_USERS.html', '/documentation/syntax'
|
|
r301 '/documentation/Sass/Script/Functions.html', '/documentation/functions'
|
|
r301 %r{/documentation/(Sass.*)}, 'http://www.rubydoc.info/gems/sass/$1'
|
|
end
|
|
|
|
use Rack::Deflater
|
|
|
|
if ENV["HEROKU"].nil? || ENV["HEROKU"] == 'false'
|
|
require "middleman"
|
|
|
|
server = Middleman.server
|
|
run Rack::Cascade.new([
|
|
server,
|
|
lambda {|env| server.call(env.merge!('PATH_INFO' => '/404'))}
|
|
])
|
|
else
|
|
use Rack::TryStatic,
|
|
:urls => ["/"], :root => 'build', :index => 'index.html',
|
|
:try => ['.html', '/index.html']
|
|
|
|
run Rack::NotFound.new("build/404/index.html")
|
|
end
|