Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/leereilly/static-site-heroku-cedar-example

:hammer: Static Sites with Ruby on Heroku/Cedar
https://github.com/leereilly/static-site-heroku-cedar-example

Last synced: 11 days ago
JSON representation

:hammer: Static Sites with Ruby on Heroku/Cedar

Awesome Lists containing this project

README

        

This article was forked from [Marshall Huss's Bamboo stack article](https://devcenter.heroku.com/articles/static-sites-on-heroku) and updated by [Lee Reilly](http://www.leereilly.net). Lee is a toolsmith and master pintsman hacking on [GitHub Enterprise](https://enterprise.github.com).

# Static Sites with Ruby on Heroku/Cedar

Sometimes you just have a static website with one or two pages. Here is a simple way to host your static site and cache it on Heroku using a [Rack](http://rack.rubyforge.org/) app.

Your folder should be organized like this:

```
- MySite
|- config.ru
|- Gemfile
|- public
|- index.html
|- images
|- js
|- css
```

In `Gemfile` file add the following:

```ruby
source :rubygems

gem 'rack'
```

You should use [bundler](https://devcenter.heroku.com/articles/bundler) to generate the `Gemfile.lock` file:

```
GEM
remote: http://rubygems.org/
specs:
rack (1.4.1)

PLATFORMS
ruby

DEPENDENCIES
rack
```

In `config.ru` file add the following:

```ruby
use Rack::Static,
:urls => ["/images", "/js", "/css"],
:root => "public"

run lambda { |env|
[
200,
{
'Content-Type' => 'text/html',
'Cache-Control' => 'public, max-age=86400'
},
File.open('public/index.html', File::RDONLY)
]
}
```

This assumes that your template uses relative references to the images and stylesheets. Go ahead and deploy the app. If you are not sure how to deploy to Heroku check out the [quickstart guide](https://devcenter.heroku.com/articles/quickstart).

And there you go, a static site being served on Heroku completely cached and easily served using a single [dyno](https://devcenter.heroku.com/articles/dynos).

If this article is incorrect or outdated, or omits critical information, please [let us know](https://devcenter.heroku.com/articles/static-sites-on-heroku#). For all other issues, please see our [support channels](https://devcenter.heroku.com/articles/support-channels).