Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
Add kong-oidc.rockspec
Browse files Browse the repository at this point in the history
  • Loading branch information
cr1cr1 committed Sep 4, 2023
1 parent d4937ad commit 44e39d6
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions kong-oidc.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
package = "kong-oidc"
version = "1.4.1-1"
source = {
url = "git://github.com/revomatico/kong-oidc",
tag = "master",
dir = "kong-oidc"
}
description = {
summary = "A Kong plugin for implementing the OpenID Connect Relying Party (RP) functionality",
detailed = [[
kong-oidc is a Kong plugin for implementing the OpenID Connect Relying Party.
When used as an OpenID Connect Relying Party it authenticates users against an OpenID Connect Provider using OpenID Connect Discovery and the Basic Client Profile (i.e. the Authorization Code flow).
It maintains sessions for authenticated users by leveraging lua-resty-session thus offering a configurable choice between storing the session state in a client-side browser cookie or use in of the server-side storage mechanisms shared-memory|memcache|redis.
It supports server-wide caching of resolved Discovery documents and validated Access Tokens.
It can be used as a reverse proxy terminating OAuth/OpenID Connect in front of an origin server so that the origin server/services can be protected with the relevant standards without implementing those on the server itself.
]],
homepage = "https://github.com/nokia/kong-oidc",
license = "Apache 2.0"
}
dependencies = {
"lua-resty-openidc ~> 1.7.6-3"
}
build = {
type = "builtin",
modules = {
["kong.plugins.oidc.filter"] = "kong/plugins/oidc/filter.lua",
["kong.plugins.oidc.handler"] = "kong/plugins/oidc/handler.lua",
["kong.plugins.oidc.schema"] = "kong/plugins/oidc/schema.lua",
["kong.plugins.oidc.session"] = "kong/plugins/oidc/session.lua",
["kong.plugins.oidc.utils"] = "kong/plugins/oidc/utils.lua"
}
}

0 comments on commit 44e39d6

Please sign in to comment.