Skip to content

Instantly share code, notes, and snippets.

@patmaddox
Created January 22, 2016 21:05
Show Gist options
  • Select an option

  • Save patmaddox/c9f635b76830c3c82782 to your computer and use it in GitHub Desktop.

Select an option

Save patmaddox/c9f635b76830c3c82782 to your computer and use it in GitHub Desktop.
Rack::Cors no worky
require "jekyll-auth"
require "rack/cors"
run JekyllAuth.site
use Rack::Cors do
allow do
origins '*'
resource '*', headers: :any, methods: [:get, :options, :head]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment