Changes between Version 7 and Version 8 of RubyCASServer


Ignore:
Timestamp:
May 2, 2012 10:11:20 AM (12 years ago)
Author:
brose
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RubyCASServer

    v7 v8  
    147147allow passenger_t var_log_t:file { getattr open append };
    148148}}}
     149
     150Now, you can set up a client mod_auth_cas. Something that works looks like:
     151{{{
     152CASDebug On
     153CASValidateServer Off
     154CASLoginURL https://signon.example.com/login
     155CASValidateURL https://signon.example.com/serviceValidate
     156CASCookiePath /var/www/cascookies/
     157
     158<Directory "/protected">
     159   AuthType CAS
     160   AuthName "Staff ONLY"
     161   Require user john joe bob
     162</Directory>
     163
     164}}}