mirror of
https://gitee.com/dromara/MaxKey.git
synced 2026-05-14 20:50:14 +08:00
s
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
<li class=""><a href="{{site.baseurl}}/protocols/formbased.html"><span class="none"></span>FormBased介绍</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="{{site.baseurl}}/slo.html" title="Single Logout"><span class="none"></span>单点注销(SLO)</a></li>
|
||||
<li><a href="{{site.baseurl}}/glossary.html" title="Glossary"><span class="none"></span>Glossary术语</a></li>
|
||||
<li><a href="{{site.baseurl}}/download.html" title="Download"><span class="none"></span>Download下载</a></li>
|
||||
</ul>
|
||||
|
||||
51
docs/slo.md
Normal file
51
docs/slo.md
Normal file
@@ -0,0 +1,51 @@
|
||||
<h2>单点注销-Single Logout</h2>
|
||||
|
||||
单点注销是指用户在一个系统退出后,其所能单点登录访问的所有系统都同时退出。单点注销主要是为提高安全性,避免用户忘记退出所有应用而造成信息的泄密。
|
||||
|
||||
|
||||
IDP支持单点注销(SLO),即用户不仅仅从认证中心注销,同时也注销从认证中心访问的应用系统。
|
||||
|
||||
|
||||
其实现方式也非常简单,由于SSO和单点登录的应用都是分开的,使用不同的域名,只是通过认证中心在多个应用系统中传递身份和登录系统。因此,首先注销单点登录应用,然后修改每个应用系统都使用SSO的单点注销页面,SSO的退出页面会将用户登录的Session注销掉。
|
||||
|
||||
<h2>单点注销配置</h2>
|
||||
|
||||
1,应用系统先完成本系统注销,注销完成后调用认证中心的单点注销地址。
|
||||
|
||||
|
||||
2,修改应用单点注销完成后的地址为https://idpserver/logout,参数reLoginUrl为注销完成后访问地址。
|
||||
|
||||
|
||||
<h2>单点注销机制</h2>
|
||||
<table border="0" class="table table-striped table-bordered ">
|
||||
<thead>
|
||||
<th >序号</th><th>认证中心(ShortName)</th><th>单点登录应用(英文)</th><th>单点登录功能(中文名称)</th>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>1</td>
|
||||
<td>退出</td>
|
||||
<td>退出</td>
|
||||
<td>失效</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>2</td>
|
||||
<td>退出</td>
|
||||
<td>不退出</td>
|
||||
<td>失效</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>3</td>
|
||||
<td>不退出</td>
|
||||
<td>退出</td>
|
||||
<td>正常</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>4</td>
|
||||
<td>不退出</td>
|
||||
<td>不退出</td>
|
||||
<td>正常</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user