Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding the OverrideINIReader for SciTokens #1860

Merged
merged 2 commits into from
Dec 13, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/XrdSciTokens/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,20 @@ default_user = osg
name_mapfile = /path/to/mapfile
```

Duplicate section and settings names (not values) will take the value of the last entry in the file. For example:

```
[Issuer https://chtc.cs.wisc.edu/icecube]
issuer = https://chtc.cs.wisc.edu/icecube
base_path = /icecube/path1

[Issuer https://chtc.cs.wisc.edu/icecube]
issuer = https://chtc.cs.wisc.edu/icecube
base_path = /icecube/path2
```

Will result in a configuration with `issuer = https://chtc.cs.wisc.edu/icecube` and `base_path = /icecube/path2`.

Within the `Global` section, the available attributes are:

- `audience` (optional): A comma separated list of acceptable audiences. The tokens must have an `aud` attribute
Expand Down