-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathinfo.xml
More file actions
48 lines (41 loc) · 2.01 KB
/
Copy pathinfo.xml
File metadata and controls
48 lines (41 loc) · 2.01 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
<?xml version="1.0"?>
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>limit_login_to_ip</id>
<name>Restrict logins to whitelisted IP addresses or users</name>
<summary>Allows administrators to restrict logins to their instance by user or specific IP ranges.</summary>
<description><![CDATA[This app allows administrators to restrict login to their
Nextcloud server to specific IP ranges, unless the user is exempted.
Note that existing sessions will be kept open.
The allowed IP ranges and exempted users can be administrated using
the OCC command line interface or graphically using the admin
settings. If you plan to use the OCC tool, the following commands
would be applicable.
To whitelist `127.0.0.0/24`:
- `occ config:app:set limit_login_to_ip whitelisted.ranges --value 127.0.0.0/24`
To whitelist `127.0.0.0/24` and also `192.168.0.0/24`:
- `occ config:app:set limit_login_to_ip whitelisted.ranges --value 127.0.0.0/24,192.168.0.0/24`
To whitelist `peter` and `john`:
- `occ config:app:set limit_login_to_ip whitelisted.uids --value peter,john`
]]></description>
<version>4.0.0</version>
<licence>agpl</licence>
<author>Lukas Reschke</author>
<namespace>LimitLoginToIp</namespace>
<types>
<filesystem/>
</types>
<category>security</category>
<website>https://github.com/nextcloud/limit_login_to_ip</website>
<bugs>https://github.com/nextcloud/limit_login_to_ip/issues</bugs>
<repository>https://github.com/nextcloud/limit_login_to_ip.git</repository>
<screenshot>https://raw.githubusercontent.com/nextcloud/limit_login_to_ip/master/screenshots/not-authorized.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/limit_login_to_ip/master/screenshots/admin-settings.png</screenshot>
<dependencies>
<php min-version="7.1" max-version="7.4" />
<nextcloud min-version="16" max-version="22" />
</dependencies>
<settings>
<admin>OCA\LimitLoginToIp\Settings\LimitSettings</admin>
</settings>
</info>