-
Notifications
You must be signed in to change notification settings - Fork 568
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve keycloak configuration docs (#10238)
* Improve keycloak configuration docs - document url to download IDP SSO descriptor xml file. - add complete logback xml file example to turn on DEBUG level - document how to bind mount the logback xml file to docker container - document what role name stands for when filter_groups_by_appname=false/true Co-authored-by: Ruslan Forostianov <[email protected]> Co-authored-by: pieterlukasse <[email protected]>
- Loading branch information
1 parent
ac5a3a6
commit a9036d2
Showing
2 changed files
with
57 additions
and
19 deletions.
There are no files selected for viewing
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
29 changes: 29 additions & 0 deletions
29
docs/deployment/authorization-and-authentication/logback.DEBUG.EXAMPLE.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,29 @@ | ||
<configuration> | ||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder> | ||
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<appender name="FILE" class="ch.qos.logback.core.FileAppender"> | ||
<file>/tmp/cbioportal.log</file> | ||
<encoder> | ||
<pattern>%date %level [%thread] %logger{10} [%file:%line] %msg%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<root level="debug"> | ||
<appender-ref ref="STDOUT" /> | ||
<appender-ref ref="FILE" /> | ||
</root> | ||
|
||
<logger name="org.mskcc" level="debug"> | ||
<appender-ref ref="STDOUT" /> | ||
<appender-ref ref="FILE" /> | ||
</logger> | ||
|
||
<logger name="org.cbioportal.security" level="debug"> | ||
<appender-ref ref="STDOUT" /> | ||
<appender-ref ref="FILE" /> | ||
</logger> | ||
</configuration> |