# # The MIT License (MIT) # # Copyright (C) 2013-2016 tarent solutions GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # osiam: # The port to listen on port: 8080 # # Database configuration # db: # # file-based H2 # #vendor: h2 #driver: org.h2.Driver #url: jdbc:h2:${osiam.home}/data/osiam;AUTO_SERVER=TRUE #username: sa #password: # # PostgreSQL # #vendor: postgresql #driver: org.postgresql.Driver #url: jdbc:postgresql://localhost:5432/osiam #username: osiam #password: osiam # # MySQL # vendor: mysql driver: com.mysql.jdbc.Driver url: jdbc:mysql://localhost:3306/osiam?useSSL=false username: osiam password: osiam # # Connection Pool Settings # #maximum-pool-size: 10 #connection-timeout-ms: 30000 # # SCIM Extensions # scim: extensions: #- urn: exampleExtension1 # fields: # - name: requiredStringField # # Case-insensitive, so can also be 'string' or 'String' # type: STRING # # Optional, by default fields are not required to have a value # required: yes # - name: integerField # type: INTEGER #- urn: exampleExtension2 # fields: # - name: booleanField # type: BOOLEAN - urn: urn:org.osiam:scim:extensions:stress-tests fields: - name: gender type: STRING - name: age type: INTEGER # # Logging configuration # logging: # Log level severity. Can be one of ALL, TRACE, DEBUG, INFO, WARN, ERROR, OFF level: TRACE # # LDAP configuration # ldap: # Enable LDAP integration enabled: false # LDAP server URL with search base #server-url: ldap://localhost:389/dc=mycorp,dc=org # DN pattern for users #dn-patterns: # - uid={0},ou=people # Synchronize data from LDAP to OSIAM on re-login #sync-user-data: true # How SCIM attributes of a user are mapped to LDAP attributes #user-mapping: # userName: uid # email: mail # name.familyName: sn # name.givenName: givenName # displayName: displayName # # Login lock configuration # tempLock: # Lock after x login failures, 0 = disabled count: 10 # Lock for x seconds timeout: 30 ajp: enabled: false #bind-address: 127.0.0.1 #port: 8009