mirror of
https://github.com/moodle/moodle.git
synced 2025-02-25 12:33:18 +01:00
21 lines
427 B
PHP
Executable File
21 lines
427 B
PHP
Executable File
<?php
|
|
/*
|
|
This file must be Shibboleth protected with something like:
|
|
|
|
--
|
|
<Location ~ "/auth/shibboleth/shib-protected.php">
|
|
AuthType shibboleth
|
|
ShibRequireSession On
|
|
require valid-user
|
|
</Location>
|
|
--
|
|
|
|
in your web server configuration.
|
|
|
|
Consult moodle/auth/shibboleth/README.txt for further instructions.
|
|
*/
|
|
|
|
require_once("../../config.php");
|
|
header("Location: ".$CFG->wwwroot."/auth/shibboleth/");
|
|
?>
|