mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
fixed documentation links
This commit is contained in:
@@ -117,7 +117,7 @@ $config['auth_level'][99] = 'Administrator';
|
|||||||
| Enable SSO support via a trusted HTTP header containing a JWT access token.
|
| Enable SSO support via a trusted HTTP header containing a JWT access token.
|
||||||
| When enabled, a sso.php config file is required (see sso.sample.php).
|
| When enabled, a sso.php config file is required (see sso.sample.php).
|
||||||
|
|
|
|
||||||
| Documentation: https://docs.wavelog.org/admin-guide/configuration/third-party-authentication
|
| Documentation: https://docs.wavelog.org/admin-guide/configuration/thirdparty-authentication/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$config['auth_header_enable'] = false;
|
$config['auth_header_enable'] = false;
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
* Copy this file to sso.php and adjust the values to your environment.
|
* Copy this file to sso.php and adjust the values to your environment.
|
||||||
* This file is loaded automatically when auth_header_enable = true in config.php.
|
* This file is loaded automatically when auth_header_enable = true in config.php.
|
||||||
*
|
*
|
||||||
* Documentation: https://docs.wavelog.org/admin-guide/configuration/third-party-authentication
|
* Documentation: https://docs.wavelog.org/admin-guide/configuration/thirdparty-authentication/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ class Header_auth extends CI_Controller {
|
|||||||
* The reverse proxy validates the user's session and forwards a JWT access token containing the user's identity and claims in a trusted HTTP header. This method decodes the token, verifies it, extracts the user information
|
* The reverse proxy validates the user's session and forwards a JWT access token containing the user's identity and claims in a trusted HTTP header. This method decodes the token, verifies it, extracts the user information
|
||||||
* and logs the user in. Depending on configuration, it can also automatically create a local user account if one does not exist, and update existing user data.
|
* and logs the user in. Depending on configuration, it can also automatically create a local user account if one does not exist, and update existing user data.
|
||||||
*
|
*
|
||||||
* For more information check out the documentation: https://docs.wavelog.org/admin-guide/configuration/third-party-authentication
|
* For more information check out the documentation: https://docs.wavelog.org/admin-guide/configuration/thirdparty-authentication/
|
||||||
*/
|
*/
|
||||||
public function login() {
|
public function login() {
|
||||||
// Guard: feature must be enabled
|
// Guard: feature must be enabled
|
||||||
|
|||||||
@@ -117,7 +117,7 @@ $config['auth_level'][99] = 'Administrator';
|
|||||||
| Enable SSO support via a trusted HTTP header containing a JWT access token.
|
| Enable SSO support via a trusted HTTP header containing a JWT access token.
|
||||||
| When enabled, a sso.php config file is required (see sso.sample.php).
|
| When enabled, a sso.php config file is required (see sso.sample.php).
|
||||||
|
|
|
|
||||||
| Documentation: https://docs.wavelog.org/admin-guide/configuration/third-party-authentication
|
| Documentation: https://docs.wavelog.org/admin-guide/configuration/thirdparty-authentication/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$config['auth_header_enable'] = false;
|
$config['auth_header_enable'] = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user