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.
- Host: GitHub
- URL: https://github.com/mkuhlmann/nextcloud_limit_login_ip
- Owner: mkuhlmann
- License: agpl-3.0
- Created: 2022-06-07T18:24:22.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-07T18:36:29.000Z (about 4 years ago)
- Last Synced: 2025-10-04T07:55:28.657Z (9 months ago)
- Topics: nextcloud, security
- Language: PHP
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
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
)
// ...
);
```