diff --git a/config.ru b/config.ru new file mode 100644 index 0000000..6ef85f9 --- /dev/null +++ b/config.ru @@ -0,0 +1,2 @@ +use Rack::Static, :urls => ["/css", "/images", "/js", "/views"], :root => "." +run lambda { |env| [200, { 'Content-Type' => 'text/html' }, File.open('index.html', File::RDONLY)] }