forked from sevensolutions/traefik-oidc-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.traefik.yml
24 lines (19 loc) · 863 Bytes
/
.traefik.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# The name of your plugin as displayed in the Plugins Catalog web UI.
displayName: OIDC Authentication
# For now, `middleware` is the only type available.
type: middleware
# The import path of your plugin.
import: github.com/sevensolutions/traefik-oidc-auth
# A brief description of what your plugin is doing.
summary: "A traefik Plugin for securing the upstream service with OpenID Connect using the Relying Party Flow."
# Medias associated to the plugin (optional)
iconPath: .assets/icon.png
# bannerPath: .assets/banner.png
# Configuration data for your plugin.
# This is mandatory, and Plugins Catalog will try to execute the plugin with the data you provide as part of its startup validity tests.
testData:
Provider:
Url: "https://..."
ClientId: "<YourClientId>"
ClientSecret: "<YourClientSecret>"
Scopes: ["openid", "profile", "email"]