|
@@ -12,7 +12,7 @@ Not yet released.
|
|
|
- OpenAdmin Notifications Center is now using [Sentinel](https://github.com/stefanpejcic/Sentinel/tree/main) service
|
|
|
- [IPset Blacklists for UFW](#ipset-blacklists)
|
|
|
- [Restrict access to Cloudflare only with a single click](#cloudflare-only)
|
|
|
-- [OpenPanel FTP - FTP module for OpenPanel (**BETA**)](https://github.com/stefanpejcic/OpenPanel-FTP/)
|
|
|
+- [OpenPanel FTP - FTP module for OpenPanel (**BETA**)](#ftp)
|
|
|
- [OpenMail - Emails module for OpenPanel (**BETA**)](https://github.com/stefanpejcic/OpenMail/)
|
|
|
- [`opencli faq` command to show frequently asked questions](#opencli-faq)
|
|
|
|
|
@@ -30,6 +30,26 @@ Not yet released.
|
|
|
- `opencli -v` is now an alias for `opencli --version`.
|
|
|
|
|
|
|
|
|
+## FTP
|
|
|
+
|
|
|
+New experimental OpenPanel FTP module is now available and if enabled allows you to create FTP sub-accounts.
|
|
|
+
|
|
|
+Upon activation, a fresh Docker container featuring VSFTPD will be initiated, serving as a shared environment for all OpenPanel FTP sub-users. This ensures the segregation of FTP accounts from other processes and services. Even in the event of a compromise, the impact is contained within the confines of the OpenPanel user's home folder, preventing access to other services or files.
|
|
|
+
|
|
|
+This functionality leverages the [open-source OpenPanel FTP module](https://github.com/stefanpejcic/OpenPanel-FTP/) and is currently in its preliminary developmental phase. As such, it is not enabled by default and there are no additional options available in the OpenPanel interface to facilitate the creation and management of FTP users. Currently, all configurations must be performed by the administrator via the terminal:
|
|
|
+
|
|
|
+To install FTP on an OpenPanel server, execute the following command:
|
|
|
+```bash
|
|
|
+opencli ftp-setup
|
|
|
+```
|
|
|
+
|
|
|
+To create new FTP accounts:
|
|
|
+```bash
|
|
|
+opencli ftp-add <NEW_USERNAME> <NEW_PASSWORD> <FOLDER> <OPENPANEL_USERNAME>
|
|
|
+```
|
|
|
+
|
|
|
+After detailed testing, a dedicated FTP page will be introduced to the OpenPanel, enabling users to seamlessly create FTP sub-users.
|
|
|
+
|
|
|
## Cloudflare only
|
|
|
|
|
|
Administrators can now disable direct server access and only allow access via Cloudflare proxy.
|