Changes between Version 9 and Version 10 of GrouperUIInstall


Ignore:
Timestamp:
06/28/13 19:45:16 (11 years ago)
Author:
uaguest_SPatel1@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GrouperUIInstall

    v9 v10  
    175175}}} 
    176176 
    177 2.  Add the following to the end of /etc/httpd/conf.d/shib.conf to require Shibboleth 
    178  
    179 {{{ 
     1772.  Add the file /etc/httpd/conf.d/grinnell.alaska.edu.conf with these contents.  This will (1) require Shibboleth, (2) redirect non-SSL traffic to SSL, and (3) redirect /grouper to /grouper/. 
     178 
     179{{{ 
     180LoadModule rewrite_module modules/mod_rewrite.so 
     181 
     182RewriteEngine On 
     183RewriteRule ^/grouper$ grouper/ [R] 
     184 
    180185<Location /> 
    181186  AuthType shibboleth 
    182187  ShibRequestSetting requireSession 1 
     188  ShibRequestSetting redirectToSSL 443 
    183189  require valid-user 
    184190</Location>