-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathinfo.xml
More file actions
69 lines (66 loc) · 2.96 KB
/
Copy pathinfo.xml
File metadata and controls
69 lines (66 loc) · 2.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?xml version="1.0"?>
<!--
- SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<info xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>user_saml</id>
<name>SSO & SAML authentication</name>
<summary>Authenticate using single sign-on</summary>
<description><![CDATA[Using the SSO & SAML app of your Nextcloud you can make it easily possible to integrate your existing Single-Sign-On solution with Nextcloud. In addition, you can use the Nextcloud LDAP user provider to keep the convenience for users. (e.g. when sharing)
The following providers are supported and tested at the moment:
* **SAML 2.0**
* OneLogin
* Shibboleth
* Active Directory Federation Services (ADFS)
* Authentik
* **Authentication via Environment Variable**
* Kerberos (mod_auth_kerb)
* Any other provider that authenticates using the environment variable
While theoretically any other authentication provider implementing either one of those standards is compatible, we like to note that they are not part of any internal test matrix.]]></description>
<version>8.1.0</version>
<licence>agpl</licence>
<author>Lukas Reschke</author>
<namespace>User_SAML</namespace>
<types>
<authentication/>
</types>
<documentation>
<admin>https://portal.nextcloud.com/article/configuring-single-sign-on-10.html</admin>
</documentation>
<category>integration</category>
<website>https://github.com/nextcloud/user_saml</website>
<bugs>https://github.com/nextcloud/user_saml/issues</bugs>
<repository type="git">https://github.com/nextcloud/user_saml.git</repository>
<screenshot>https://raw.githubusercontent.com/nextcloud/user_saml/master/screenshots/1.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/user_saml/master/screenshots/2.png</screenshot>
<dependencies>
<nextcloud min-version="32" max-version="35" />
</dependencies>
<background-jobs>
<job>OCA\User_SAML\Jobs\CleanSessionData</job>
</background-jobs>
<repair-steps>
<post-migration>
<step>OCA\User_SAML\Migration\RememberLocalGroupsForPotentialMigrations</step>
</post-migration>
<live-migration>
<step>OCA\User_SAML\Migration\CleanupRemovedConfig</step>
<step>OCA\User_SAML\Migration\TransferGroupMembers</step>
</live-migration>
</repair-steps>
<commands>
<command>OCA\User_SAML\Command\ConfigCreate</command>
<command>OCA\User_SAML\Command\ConfigDelete</command>
<command>OCA\User_SAML\Command\ConfigGet</command>
<command>OCA\User_SAML\Command\ConfigSet</command>
<command>OCA\User_SAML\Command\GetMetadata</command>
<command>OCA\User_SAML\Command\GroupMigrationCopyIncomplete</command>
<command>OCA\User_SAML\Command\GroupMigrationManual</command>
<command>OCA\User_SAML\Command\UserAdd</command>
</commands>
<settings>
<admin>OCA\User_SAML\Settings\Admin</admin>
<admin-section>OCA\User_SAML\Settings\Section</admin-section>
</settings>
</info>