<sec:authentication-manager alias="authenticationManager">
<sec:authentication-provider ref="preauthAuthProvider">
<sec:authentication-provider user-service-ref="userDetailsService">
<sec:password-encoder hash="md5"><sec:salt-source user-property="username" /></sec:password-encoder>
</sec:authentication-provider>
</sec:authentication-manager>
--
You received this message because you are subscribed to the Google Groups "Deutschsprachige Opencast Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email to anwender+unsubscribe@opencast.org.
- Mein Bootstrap User wird nicht in die Datenbank eingetragen, was dazu führt, dass er keinen Zugriff mehr hat, wenn ich den Bootstrap aus der Konfiguration rausnehme.
<bean id="authSuccessHandler" class="org.opencastproject.kernel.security.AuthenticationSuccessHandler">
<property name="securityService" ref="securityService" />
<property name="welcomePages">
<map>
<entry key="ROLE_ADMIN" value="/admin-ng/index.html" />
<entry key="ROLE_ADMIN_UI" value="/admin-ng/index.html" />
<entry key="*" value="/engage/ui/index.html" /> <!-- Any role not listed explicitly will redirect here -->
</map>
</property>
</bean>Apache:
<Location "/admin-ng/index.html">
AuthType shibboleth
ShibRequireSession On
ShibUseHeaders On
require valid-user
Options FollowSymLinks MultiViews ExecCGI
Order allow,deny
Allow from all
</Location>
Opencast Security Configuration:
<!-- Redirects unauthenticated requests to the login form -->
<bean id="userEntryPoint" class="org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint">
<property name="loginFormUrl" value="/admin-ng/index.html" />
</bean>
roles
0 "ROLE_AAI_U...@lrz.de"
1 "ROLE_ANONYMOUS"
2 "ROLE_USER_AB34DEF_LRZ_DE"
3 "ROLE_USER"
4 "ROLE_AAI_USER"
5 "ROLE_AAI_ORG_Leibniz Rechenzentrum_MEMBER"
userRole "ROLE_USER_AB34DEF_LRZ_DE"# Do not forward Shibboleth requests
ProxyPass /shibboleth !
ProxyPass /Shibboleth.sso !