Rack::CloudflareJwt
About
This gem provides CloudFlare JSON Web Token (JWT) based authentication.
Requirements
- Ruby 2.6.0 or greater
Installation
Add this line to your application's Gemfile:
gem 'rack-cloudflare-jwt'
And then execute:
$ bundle install
Or install it directly with:
$ gem install rack-cloudflare-jwt
Usage
Rack::CloudflareJwt::Auth accepts several configuration options. All options are passed in a single Ruby Hash:
policy_aud: required :String: A Application Audience (AUD) Tag.include_paths: optional : Array : An Array of path strings representing paths that should be checked for the presence of a valid JWT token. Includes sub-paths as of specified paths as well (e.g.%w(/docs)includes/docs/some/thing.htmlalso). Each path should start with a/. If a path not matches the current request path this entire middleware is skipped and no authentication or verification of tokens takes place.
Rails
require 'rack/cloudflare_jwt'
Rails.application.config.middleware.use Rack::CloudflareJwt::Auth, policy_aud: 'xxx.yyy.zzz', include_paths: %w[/foo]
Contributing
- Fork it ( https://github.com/Shuttlerock/rack-cloudflare-jwt/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request