-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add forgoten midPoint config file for Shib demo
- Loading branch information
Slavek Licehammer
committed
Jan 13, 2022
1 parent
506dd7d
commit 932b562
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
60 changes: 60 additions & 0 deletions
60
demo/shibboleth/midpoint_server/container_files/mp-home/config.xml
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,60 @@ | ||
| <?xml version="1.0"?> | ||
| <!-- | ||
| ~ Copyright (C) 2010-2021 Evolveum and contributors | ||
| ~ | ||
| ~ This work is dual-licensed under the Apache License 2.0 | ||
| ~ and European Union Public License. See LICENSE file for details. | ||
| --> | ||
|
|
||
| <!-- | ||
| Example config.xml for Native PG repository. | ||
| To use it: | ||
| 1. Copy it to $MIDPOINT_HOME, e.g. under midpoint.../var directory in the extracted archive. | ||
| 2. Rename the copied file in $MIDPOINT_HOME to config.xml. | ||
| 3. Check DB connection parameters and change them as needed. | ||
| 4. Start midPoint (bin/start.sh) and observe the success in $MIDPOINT_HOME/log/midpoint.log. | ||
| For more info see: | ||
| * midPoint home: | ||
| https://docs.evolveum.com/midpoint/reference/deployment/midpoint-home-directory/ | ||
| * Overriding config.xml parameters from command line: | ||
| https://docs.evolveum.com/midpoint/reference/deployment/midpoint-home-directory/overriding-config-xml-parameters/ | ||
| * Repository configuration: | ||
| https://docs.evolveum.com/midpoint/reference/repository/configuration/ | ||
| * Canonical config.xml auto-created if not present in $MIDPOINT_HOME (master branch): | ||
| https://github.com/Evolveum/midpoint/blob/master/repo/system-init/src/main/resources/config.xml | ||
| --> | ||
| <configuration> | ||
| <midpoint> | ||
| <webApplication> | ||
| <importFolder>${midpoint.home}/import</importFolder> | ||
| </webApplication> | ||
| <repository> | ||
| <type>native</type> | ||
| <jdbcUrl>jdbc:postgresql://localhost:5432/midpoint</jdbcUrl> | ||
| <jdbcUsername>midpoint</jdbcUsername> | ||
| <jdbcPassword>password</jdbcPassword> | ||
| </repository> | ||
| <audit> | ||
| <auditService> | ||
| <auditServiceFactoryClass>com.evolveum.midpoint.audit.impl.LoggerAuditServiceFactory</auditServiceFactoryClass> | ||
| </auditService> | ||
| <auditService> | ||
| <auditServiceFactoryClass>com.evolveum.midpoint.repo.sqale.audit.SqaleAuditServiceFactory</auditServiceFactoryClass> | ||
| </auditService> | ||
| </audit> | ||
| <icf> | ||
| <scanClasspath>true</scanClasspath> | ||
| <scanDirectory>${midpoint.home}/icf-connectors</scanDirectory> | ||
| </icf> | ||
| <keystore> | ||
| <keyStorePath>${midpoint.home}/keystore.jceks</keyStorePath> | ||
| <keyStorePassword>changeit</keyStorePassword> | ||
| <encryptionKeyAlias>default</encryptionKeyAlias> | ||
| </keystore> | ||
| </midpoint> | ||
| </configuration> |