Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. # Protect everything with Shibboleth authentication
  2. <Location />
  3. AuthType shibboleth
  4. ShibRequireSession On
  5. require shibboleth
  6. ShibUseHeaders On
  7. SSLRequireSSL
  8. Allow from all
  9. </Location>
  10.  
  11. # Redirect authenticated connections from any given campus to the correct campus-specific URL
  12.  
  13. RewriteCond %{LA-U:ENV:Shib-Identity-Provider} ucop
  14. RewriteRule ^/(.*)$ http://dash-dev.ucop.edu%{REQUEST_URI} [R,QSA,L]
  15.  
  16. RewriteCond %{ENV:HTTP_SHIB_IDENTITY_PROVIDER} ucop
  17. RewriteCond %{ENV: Shib_Identity_Provider} ucop
  18. RewriteCond %{ENV:SHIB_IDENTITY_PROVIDER} ucop
  19. RewriteCond %{HTTP: Shib_Identity_Provider} ucop
  20. RewriteCond %{HTTP: HTTP_SHIB_IDENTITY_PROVIDER} ucop
  21. RewriteCond %{HTTP: SHIB_IDENTITY_PROVIDER} ucop
  22. RewriteCond %{HTTP_SHIB_IDENTITY_PROVIDER} ucop
  23. RewriteCond %{Shib_Identity_Provider} ucop
  24.  
  25. 128.48.254.43 - - [10/Apr/2014:11:59:39 --0700] [dash-dev.berkeley.edu/sid#6b5b48][rid#d2f150/initial] (4) RewriteCond: input='' pattern='ucop' => not-matched
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement