Go to file
Dominik Frantisek Bucik 2c413d9916
feat: ๐ŸŽธ Refactored userinfo serv., new SAML-based claim sources
Refactored userinfo to fetch attributes only when needed and requested.
Also added the possibility to extract attributes from the actual SAML
session

BREAKING CHANGE: ๐Ÿงจ requires database update
2022-01-12 10:08:30 +01:00
.github/workflows refactor: ๐Ÿ’ก Drop support for java 8 2021-12-03 14:50:16 +01:00
.mvn/wrapper chore: ๐Ÿค– Added Maven Wrapper 2021-11-05 15:28:09 +01:00
perun-oidc-server feat: ๐ŸŽธ Refactored userinfo serv., new SAML-based claim sources 2022-01-12 10:08:30 +01:00
perun-oidc-server-webapp feat: ๐ŸŽธ Refactored userinfo serv., new SAML-based claim sources 2022-01-12 10:08:30 +01:00
.gitignore cleanup 2017-03-20 13:45:55 -04:00
.releaserc feat: ๐ŸŽธ Added automated bundling of .war file into release 2021-12-08 09:44:12 +01:00
CHANGELOG.md chore(release): 7.5.2 [skip ci] 2022-01-10 08:23:37 +00:00
LICENSE.txt new year 2018 2018-02-12 10:39:04 -05:00
README.md docs: โœ๏ธ Updated readme 2021-11-05 15:28:09 +01:00
checkstyle.xml new year 2018 2018-02-12 10:39:04 -05:00
maven-build.sh feat: ๐ŸŽธ Added automated bundling of .war file into release 2021-12-08 09:44:12 +01:00
mvnw chore: ๐Ÿค– Added Maven Wrapper 2021-11-05 15:28:09 +01:00
mvnw.cmd chore: ๐Ÿค– Added Maven Wrapper 2021-11-05 15:28:09 +01:00
package.json chore(deps): update dependency @semantic-release/exec to v6.0.3 2022-01-05 11:39:09 +00:00
pom.xml chore(release): 7.5.2 [skip ci] 2022-01-10 08:23:37 +00:00
renovate.json ci: add renovate config 2021-11-19 18:58:25 +01:00
update-versions.sh feat: ๐ŸŽธ Added automated bundling of .war file into release 2021-12-08 09:44:12 +01:00

README.md

MITREid Connect

This project has been forked from the MITREid Connect repository. However, due to split between the paths we want to take with the project, we have decided to remove the fork relationship. All the original code will stay licensed to the original project. We would like to thank the developers of the original project for their work and wish them all the best in its continuation.

Contribution

This repository uses Conventional Commits. Any change that significantly changes behavior in a backward-incompatible way or requires a configuration change must be marked as BREAKING CHANGE.

Building

Project is built with mvn clean package command. Following parameters can be passed to modify the final build:

General properties

  • location of the configuration files (path to the containing dir) : -Dconfig.location=/etc/oidc/config
    • default: /etc/perun
  • final build name: -Dfinal.name=name
    • default: oidc

Logging configuration

Following are the options for customization of logging when building

  • logging style: -Dlog.to=FILE
    • default: FILE
    • available: SYSLOG,FILE,ROLLING_FILE
  • logging level: -Dlog.level=level
    • default: info
    • available: error,warn,info,debug,trace
  • logging to SYSLOG
    • logging contextName (program name in syslog): -Dlog.contextName=contextName
      • default: oidc
    • logging facility: -Dlog.facility=facility
      • default: LOCAL7
  • logging to file
    • file path specification: -Dlog.file=/var/log/oidc
      • default: ${catalina.base}/logs/${CONTEXT_NAME}
    • file extension: -Dlog.file-extension=debug
      • default: log
  • logging to rolling-file
    • file path specification: -Dlog.rolling-file=/var/log/oidc
      • default: ${catalina.base}/logs/${CONTEXT_NAME}
    • file extension: -Dlog.file-extension=debug
      • default: log

WAR file

The result war-file is located under the perun-oidc-server-webapp/target/{NAME}.war. The WAR should be deployed into a tomcat.