Advertisement
Guest User

Untitled

a guest
Aug 20th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. ProxyRequests off
  2.  
  3. <VirtualHost internal-domain.lan:80>
  4. ServerName internal-domain.lan
  5. DocumentRoot "C:/DEV/ws/web-app/src/"
  6.  
  7. <Directory "C:/DEV/ws/web-app/src/">
  8. Options Indexes FollowSymLinks
  9. AllowOverride All
  10. Require all granted
  11. </Directory>
  12.  
  13. #ProxyPass !
  14.  
  15. <Location /Shibboleth.sso>
  16. AuthType None
  17. Require all granted
  18. </Location>
  19.  
  20. <Location />
  21. AuthType shibboleth
  22. ShibRequestSetting requireSession 1
  23. Require shib-session
  24. </Location>
  25.  
  26. <Location /web-api>
  27. AuthType None
  28. ProxyPass ajp://localhost:8009/web-api
  29. ProxyPassReverse ajp://localhost:8009/web-api
  30. #ProxyPassReverseCookiePath /web-api /
  31. </Location>
  32. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement