{iframe:src=http://update.sonarsource.org/plugins/cas.html|width=700|height=250|frameborder=0}
Your browser does not support iframes.
{iframe} |
This plugin enables user authentication and Single Sign-On via your Central Authentication Service (JA-SIG CAS):
Add the following properties to $SONAR_HOME/conf/sonar.properties and restart the Sonar server:
# This property must be set to true sonar.authenticator.createUsers=true # Enable CAS plugin sonar.security.realm=cas # Protocol is cas1, cas2 or saml11 sonar.cas.protocol=cas2 # Location of the CAS server login form sonar.cas.casServerLoginUrl=https://localhost:8443/cas/login # CAS server root URL sonar.cas.casServerUrlPrefix=https://localhost:8443/cas # Sonar server root URL, without ending slash sonar.cas.sonarServerUrl=http://localhost:9000 # Optional CAS server logout URL. If set, sonar session will be deleted on CAS logout request. #sonar.cas.casServerLogoutUrl=http://localhost:8080/cas/logout # Specifies whether gateway=true should be sent to the CAS server. Default is false. #sonar.cas.sendGateway=false # The tolerance in milliseconds for drifting clocks when validating SAML 1.1 tickets. # Note that 10 seconds should be more than enough for most environments that have NTP time synchronization. # Default is 1000 milliseconds. #sonar.cas.saml11.toleranceMilliseconds=1000 |