![]() Several tables have been dropped from the database. Also, access_token does not contain permissions anymore. To update the DB accordingly, run following: ```sql DROP TABLE access_token_permissions; DROP TABLE resource_set; DROP TABLE resource_set_scope; DROP TABLE permission_ticket; DROP TABLE permission; DROP TABLE permission_scope; DROP TABLE claim; DROP TABLE claim_to_policy; DROP TABLE claim_to_permission_ticket; DROP TABLE policy; DROP TABLE policy_scope; DROP TABLE claim_token_format; DROP TABLE claim_issuer; DROP TABLE saved_registered_client; ``` |
||
---|---|---|
.github/workflows | ||
.mvn/wrapper | ||
perun-oidc-server | ||
perun-oidc-server-webapp | ||
.editorconfig | ||
.gitignore | ||
.releaserc | ||
.travis.yml | ||
CHANGELOG.md | ||
LICENSE.txt | ||
README.md | ||
checkstyle.xml | ||
mvnw | ||
mvnw.cmd | ||
package.json | ||
pom.xml |
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
- default:
- final build name:
-Dfinal.name=name
- default:
oidc
- default:
Logging configuration
Following are the options for customization of logging when building
- logging style:
-Dlog.to=FILE
- default:
FILE
- available:
SYSLOG,FILE,ROLLING_FILE
- default:
- logging level:
-Dlog.level=level
- default:
info
- available:
error,warn,info,debug,trace
- default:
- logging to SYSLOG
- logging contextName (program name in syslog):
-Dlog.contextName=contextName
- default:
oidc
- default:
- logging facility:
-Dlog.facility=facility
- default:
LOCAL7
- default:
- logging contextName (program name in syslog):
- logging to file
- file path specification:
-Dlog.file=/var/log/oidc
- default:
${catalina.base}/logs/${CONTEXT_NAME}
- default:
- file extension:
-Dlog.file-extension=debug
- default:
log
- default:
- file path specification:
- logging to rolling-file
- file path specification:
-Dlog.rolling-file=/var/log/oidc
- default:
${catalina.base}/logs/${CONTEXT_NAME}
- default:
- file extension:
-Dlog.file-extension=debug
- default:
log
- default:
- file path specification:
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.