Sha256: 91ad3adb78f9b672121fac0c54c6cf2b699cef7b5982d43efe99c94d10d49b07

Contents?: true

Size: 1.15 KB

Versions: 1

Compression:

Stored size: 1.15 KB

Contents

##########################################
# Shibboleth Apache Global configuration #
##########################################
# * See https://spaces.internet2.edu/display/SHIB2/NativeSPApacheConfig
#   For details on the switches that can be flipped in the mod_shib module
#


# This is required to be on for Native SP.
UseCanonicalName On

<% if @host.shib_prefix.nil? %>
# Note: Intentionally not specifying ShibConfig '/some/crazy/path', assumed to be default
<% else %>
# Specifying a non-standard config file location
ShibConfig <%= File.join(@host.shib_prefix, 'shibboleth2.xml') %>
<% end %>
  
LoadModule mod_shib /usr/lib64/shibboleth/mod_shib_22.so

<IfModule mod_alias.c>
  <Location /shibboleth-sp>
    Allow from all
  </Location>
  Alias /shibboleth-sp/main.css /usr/share/doc/shibboleth-2.4.3/main.css
  Alias /shibboleth-sp/logo.jpg /usr/share/doc/shibboleth-2.4.3/logo.jpg
</IfModule>

# Enable shibboleth for all vhosts, does NOT require auth anywhere
# just makes it possible.
# Specific auth requirements are made in the <RequestMap> in shibboleth2.xml
# rather than in apache conf files
<Location />
  AuthType shibboleth
  Require shibboleth
</Location>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
shibboleths_lil_helper-1.0.9 lib/slh/templates/shib_apache.conf.erb