Changes between Version 7 and Version 8 of RubyCASServer
- Timestamp:
- May 2, 2012 10:11:20 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RubyCASServer
v7 v8 147 147 allow passenger_t var_log_t:file { getattr open append }; 148 148 }}} 149 150 Now, you can set up a client mod_auth_cas. Something that works looks like: 151 {{{ 152 CASDebug On 153 CASValidateServer Off 154 CASLoginURL https://signon.example.com/login 155 CASValidateURL https://signon.example.com/serviceValidate 156 CASCookiePath /var/www/cascookies/ 157 158 <Directory "/protected"> 159 AuthType CAS 160 AuthName "Staff ONLY" 161 Require user john joe bob 162 </Directory> 163 164 }}}