From d1a3c1972f09957a5332ec11b5b3dfeb43b3e7b5 Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Fri, 28 Jun 2024 16:56:54 +0200 Subject: [PATCH] Update 2024-06-28-new-features-in-openpanel-021.md --- ...024-06-28-new-features-in-openpanel-021.md | 35 ++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/documentation/blog/2024-06-28-new-features-in-openpanel-021.md b/documentation/blog/2024-06-28-new-features-in-openpanel-021.md index 8153ef80..2a0d5bb6 100644 --- a/documentation/blog/2024-06-28-new-features-in-openpanel-021.md +++ b/documentation/blog/2024-06-28-new-features-in-openpanel-021.md @@ -12,5 +12,38 @@ OpenPanel 0.2.1 is officially released today and is available for installation: -Version 0.2.1 is the most complex version that +Version 0.2.1 is the most complex version that we have so far, and brings a lot of improvements to both the OpenAdmin interface and the backend logic. + + + +Lets jump right in and see exactyl what improvements are made: + + +### Improved install + +Installation script is now optimized and average installation speed is less that 5 minutes! + +![faster install](https://i.postimg.cc/nLd55VjJ/2024-06-28-16-45.png) + +We managed to lower the dependencies for OpenPanel to just: + +"docker.io" "default-mysql-client" "nginx" "zip" "bind9" "unzip" "python3-pip" "pip" "gunicorn" "jc" "certbot" "python3-certbot-nginx" "sqlite3" "geoip-bin" "ufw" + +### Customization that stick + +All configuration files ofr OpenPanel are now stored under `/etc/openpanel/` and not modified on updates. This ensures that any customizations are permanent. + +```bash +/etc/openpanel/ +├── bind9/ - DNS configuration files and templates +├── docker/ - Docker configuration +├── goaccess/ - Configuration for Domain Access Reports +├── mysql/ - MySQL login information and backups +├── nginx/ - Nginx configurtion and domain templates +├── openadmin/ - Configuration files for OpenAdmin service +├── openpanel/ - Configuration files for OpenPanel +├── skeleton/ - Files that are used for new users +├── ssh/ - SSH configuration +└── ufw/ - Firewall configuration +```