An open API service indexing awesome lists of open source software.

https://github.com/mkuhlmann/nextcloud_limit_login_ip

Similar to the official limit_login_to_ip nextcloud app but applies ip limit only to specific groups.
https://github.com/mkuhlmann/nextcloud_limit_login_ip

nextcloud security

Last synced: about 1 month ago
JSON representation

Similar to the official limit_login_to_ip nextcloud app but applies ip limit only to specific groups.

Awesome Lists containing this project

README

          

# Nextcloud Limit Login to Ip

Similar to the official [limit_login_to_ip](https://github.com/nextcloud/limit_login_to_ip) nextcloud app but applies ip limit only to specific groups.

## ⚠️ No support, no proper ui ⚠️

# Installation

Place this app in **nextcloud/apps/**

# Configuration

No ui, available. Configurate via config.php like this:

```php
$CONFIG = array(
// ...
'limit_login_ip_groups' => array(
'GROUPNAME' => ['192.168.1.1/24', '10.8.0.1/24'] // whitelist of allowed ip ranges for GROUPNAME
)
// ...
);

```