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

Commit 44e39d6

Browse files
committed
Add kong-oidc.rockspec
1 parent d4937ad commit 44e39d6

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

kong-oidc.rockspec

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
package = "kong-oidc"
2+
version = "1.4.1-1"
3+
source = {
4+
url = "git://github.com/revomatico/kong-oidc",
5+
tag = "master",
6+
dir = "kong-oidc"
7+
}
8+
description = {
9+
summary = "A Kong plugin for implementing the OpenID Connect Relying Party (RP) functionality",
10+
detailed = [[
11+
kong-oidc is a Kong plugin for implementing the OpenID Connect Relying Party.
12+
13+
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).
14+
15+
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.
16+
17+
It supports server-wide caching of resolved Discovery documents and validated Access Tokens.
18+
19+
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.
20+
]],
21+
homepage = "https://github.com/nokia/kong-oidc",
22+
license = "Apache 2.0"
23+
}
24+
dependencies = {
25+
"lua-resty-openidc ~> 1.7.6-3"
26+
}
27+
build = {
28+
type = "builtin",
29+
modules = {
30+
["kong.plugins.oidc.filter"] = "kong/plugins/oidc/filter.lua",
31+
["kong.plugins.oidc.handler"] = "kong/plugins/oidc/handler.lua",
32+
["kong.plugins.oidc.schema"] = "kong/plugins/oidc/schema.lua",
33+
["kong.plugins.oidc.session"] = "kong/plugins/oidc/session.lua",
34+
["kong.plugins.oidc.utils"] = "kong/plugins/oidc/utils.lua"
35+
}
36+
}

0 commit comments

Comments
 (0)