... | ... | @@ -7,4 +7,24 @@ and uncomment/activate e.g. this: |
|
|
```xml
|
|
|
<Attribute name="urn:oid:0.9.2342.19200300.100.1.3" id="mail"/>
|
|
|
<Attribute name="urn:oid:2.16.840.1.113730.3.1.241" id="displayName"/>
|
|
|
```
|
|
|
|
|
|
Apache needs something like this
|
|
|
```
|
|
|
<LocationMatch /...)>
|
|
|
UseCanonicalName On
|
|
|
AuthType shibboleth
|
|
|
ShibRequestSetting requireSession 1
|
|
|
require shib-session
|
|
|
</LocationMatch>
|
|
|
```
|
|
|
|
|
|
And this is a php-script you might use to see what's going on header-wise:
|
|
|
```php
|
|
|
<?php
|
|
|
echo "<h1>All headers</h1>\n";
|
|
|
foreach ($_SERVER as $k => $v) {
|
|
|
echo "$k = $v <br>\n";
|
|
|
}
|
|
|
?>
|
|
|
``` |
|
|
\ No newline at end of file |