This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
forked from nokia/kong-oidc
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |