Hi, sorry for the delay.
The solution is quite simple : - Configure Adobe Connect to listen on a different port than 80, 8080 for example, in breeze\custom.ini : HTTP_PORT=8080 - Configure Adobe Connect to handle SSO through HTTP Header, see Connect documentation, in breeze\custom.ini HTTP_AUTH_HEADER=X-REMOTE_USER ; default header set by mod_auth_cas, you may have to change it - As HTTP Header SSO auth provide only authentication, you'll need to link your Connect with a directory, where user login is the same between your directory and your CAS server (here, the directory is also the backend of our CAS server), see Connect documentation. - Install Apache on the same server, listening on port 80 - Compile, add mod_auth_cas and configuration in httpd.conf, see documentation <https://wiki.jasig.org/display/CASC/mod_auth_cas> - Add mod_proxy and configuration in httpd.conf : ProxyRequests Off <Proxy *> Order deny,allow Allow from all ProxyAddUser On AuthType CAS Require valid-user </Proxy> ProxyPass / http://your.connect.server:8080/ ProxyPassReverse / http://your.connect.server:8080/ ProxyPreserveHost On You can also dmzize the CAS enabled reverse proxy and keep Connect on port 80. I hope I answered your question, have a nice day. -- Vincent Hurtevent Direction du Système d'Information Université Claude Bernard Lyon 1 ________________________________________ De : AbdulAzeem Mohammed [[email protected]] Date d'envoi : mardi 24 avril 2012 09:18 À : [email protected] Objet : Re:[cas-user] Adobe Connect Vincent Hurtevent <vincent.hurtevent@...> writes: > > On 07/10/2011 17:35, Dmitriy Kopylenko wrote: > > > > does anyone have any experience CASifying Adobe Connect? > > > > You can configure Connect to listen to a different port than 80 and run > a casified reverse proxy (Apache+mod_auth_cas+mod_proxy) in front of it. > > In Connect you can set simple http header sso, see documentation > <http://help.adobe.com/en_US/connect/8.0/installconfigure/connect_8_install.pdf> > page 62. > > It's working quite well in our university. We import also users from our > LDAP. > Dear Vincent, Could you please provide configuration details for adobe connect + CAS + reverse proxy Thanks AbdulAzeem Mohammed -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
