...
The Shibboleth module needs to be informed that the information it's receiving from the web server has been altered by the deployment environment to handle SSL load balancers/accelerators properly. This can be done for Apache by specifying ShibURLScheme https
within the appropriate <VirtualHost>
in httpd.conf
. For IIS, this must be specified directly in shibboleth.xml
by modifying the <Site>
element:
Code Block | |||||
---|---|---|---|---|---|
| |||||
<Implementation> <ISAPI normalizeRequest="true">"true"> <Site<Site id="1" name="sptest.tut.fi" scheme="https"/> </ISAPI> </Implementation> |
...
"https"/>
</ISAPI>
</Implementation>
|