-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Parse URL path to determine file name
- Loading branch information
Showing
3 changed files
with
69 additions
and
2 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
66 changes: 66 additions & 0 deletions
66
docs/content/en/docs/config/packages/auth/manager/oidcmapping/_index.md
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,66 @@ | ||
--- | ||
title: "oidcmapping" | ||
linkTitle: "oidcmapping" | ||
weight: 10 | ||
description: > | ||
Configuration for the oidcmapping service | ||
--- | ||
|
||
# _struct: config_ | ||
|
||
{{% dir name="insecure" type="bool" default=false %}} | ||
Whether to skip certificate checks when sending requests. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/auth/manager/oidcmapping/oidcmapping.go#L57) | ||
{{< highlight toml >}} | ||
[auth.manager.oidcmapping] | ||
insecure = false | ||
{{< /highlight >}} | ||
{{% /dir %}} | ||
|
||
{{% dir name="issuer" type="string" default="" %}} | ||
The issuer of the OIDC token. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/auth/manager/oidcmapping/oidcmapping.go#L58) | ||
{{< highlight toml >}} | ||
[auth.manager.oidcmapping] | ||
issuer = "" | ||
{{< /highlight >}} | ||
{{% /dir %}} | ||
|
||
{{% dir name="id_claim" type="string" default="sub" %}} | ||
The claim containing the ID of the user. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/auth/manager/oidcmapping/oidcmapping.go#L59) | ||
{{< highlight toml >}} | ||
[auth.manager.oidcmapping] | ||
id_claim = "sub" | ||
{{< /highlight >}} | ||
{{% /dir %}} | ||
|
||
{{% dir name="uid_claim" type="string" default="" %}} | ||
The claim containing the UID of the user. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/auth/manager/oidcmapping/oidcmapping.go#L60) | ||
{{< highlight toml >}} | ||
[auth.manager.oidcmapping] | ||
uid_claim = "" | ||
{{< /highlight >}} | ||
{{% /dir %}} | ||
|
||
{{% dir name="gid_claim" type="string" default="" %}} | ||
The claim containing the GID of the user. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/auth/manager/oidcmapping/oidcmapping.go#L61) | ||
{{< highlight toml >}} | ||
[auth.manager.oidcmapping] | ||
gid_claim = "" | ||
{{< /highlight >}} | ||
{{% /dir %}} | ||
|
||
{{% dir name="userprovidersvc" type="string" default="" %}} | ||
The endpoint at which the GRPC userprovider is exposed. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/auth/manager/oidcmapping/oidcmapping.go#L62) | ||
{{< highlight toml >}} | ||
[auth.manager.oidcmapping] | ||
userprovidersvc = "" | ||
{{< /highlight >}} | ||
{{% /dir %}} | ||
|
||
{{% dir name="usersmapping" type="string" default="" %}} | ||
The OIDC users mapping file path [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/auth/manager/oidcmapping/oidcmapping.go#L63) | ||
{{< highlight toml >}} | ||
[auth.manager.oidcmapping] | ||
usersmapping = "" | ||
{{< /highlight >}} | ||
{{% /dir %}} | ||
|
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