Ubiquiti Cloud Controller is a Control System for network devices of the same brand.
Best posts made by MooCloud_Matt
-
Unifi Cloud Controller
-
Event to Webhooks
A good addition to the Cloudron API, is 4 shore the possibility to been notify of the event accruing on the server with webhooks.
For us business is a good feature, to help us setup action or workflow base on them, increse security and stability are consequences.
For private geek user, they can setup telegram or main with notification coming from there server, that will make a smoother experience with there server.
Event are already json, we just need to be able to send them to an endpoint, maybe with the possibility to choose witch event we want to receive.
-
RE: OpenLiteSpeed Wordpress
Hello everyone !
Today we start testing the first version of OpenLiteSpeed on Cloudron, we hope to be able to bring it to open-beta soon.
We are working to bring full support to the OLS webadmin panel; and the main add-on modules, for now the image will be only for WordPress, but we are working to bring other PHP and Django scripts as well (maybe this will use nginx). -
RE: What's coming in 6.0 (take 2)
@jdaviescoates said in What's coming in 6.0 (take 2):
Faster Nextcloud and WordPress!
We have some test image with Nginx + WP, that i have already shared with @girish, in the next few day we will work with him on some special feature to make the manifest compatible with OLS base image that we have pretty much ready, and later we will work on WP and NextCloud performance boost.
Probably next week, we will post some performance benchmarks of the new WP image, for both Nginx and OLS base image.
-
RE: OpenLiteSpeed Wordpress
Update:
- The cache plugin is functional and connects to OLS for server side caching.
- The cache plugin is functional and connects to OLS for server side caching.
-
Group-Office (Sogo/Nextcloud Alternative + ActiveSync)
Hi everyone,
I started looking for possible solutions to the problem we are having in building the image of Sogo with ActiveSync and not finding a solution (if you want to try to help, find the issue here).So I looked for an alternative:
What do you think of GroupOffice?They have a rather complete free version, with modules:
- e-mail (Sieve, Multiple mail for account)
- list itemcontacts
- list itemcalendar
- list itemfile (webdav compatible)
- list itemactivesync (with also a module to control activesync)
- The sharing system is very complete like that of sogo, there can be email accounts, calendars, address book and shared drives.
it is entirely written in PHP so creating a dockerimage should not be a problem, the only disadvantage is that the developers are not very active even if they continue to release bugfixes, they do not have deadlines for new features.
-
RE: Invalid CloudronManifest.json: Format validation failed (not a semver) @ /version
@rmdes
version need to be complete:1.1.0
here you can find more info:
https://semver.org/
https://docs.cloudron.io/packaging/manifest/#version -
RE: Cloudron email: feature improvements/ideas
I try to summarize the feasible and effective antispam scenario/stack:
- Rspamd
- It does practically the same job as spamassasin, he needs less training then SA.
- spamassassin seems more effective than rspamd if configured correctly, thanks to the use of signature exchange nextwork razor, pyzor, ecc ecc.
- an antivirus(clamav), is impractical for cloudron, because it would require at least 1.5 / 2 GB of ram to have the entire signature database to be fast enough to filter emails, and as far as we are concerned 90% of our customers do not have such resources on the vServer.
- SPF/DKIM/DMARC
almost all spam is now signed with these protocols, therefore further control by the antispam is normally useless.
what cloudron does from this point of view is already excellent, haraka is much faster than SA or Rspamd, it would be a waste of resources in most cases to make the antispam and not the MTA do this job. - DNBSL
if well configured these work very very well, but many of these do not allow to be used by anonymous servers and many others are paid, for this reason we suggest the use of a proxy or for all emails or at least for parts of the antispam-system such as DNBSL, signature.
- Rspamd
-
ARM official support?
Arm CPU in servers are more and more comune, and for a lot of operations are a better fit, especially if you use a modern language that takes advantage of multithreading.
And I think is time for cloudron to start to support it/working on supporting it, for now, 3 big cloud providers offer instances based on ARM CPUs (AWS,Azure,Alibaba).
Hetzer announced that they will start buying CPU from Ampere too, and I think that with the rise of requests on the forum DigitalOcean is not far behind.
Ovviusly this is my personal idea, what do you think?
-
RE: imapsieve
@girish
as you know we use an external Mail Proxy, imapsieve is a good tool to get spam/ham feedback from our users.
Second, it can be used to automate flow based on where the mail has been moved by the user.
Latest posts made by MooCloud_Matt
-
RE: Has anyone already tested the VS Code Web IDE in GitLab 15.7
@andreas
That front end code and the code server ware out of sync.
So any file change on the front end was not updated un till a commit was done.For example if you have a Vue app, vite will not update your dev build untill you didn't commit
-
RE: Has anyone already tested the VS Code Web IDE in GitLab 15.7
@andreas
Ohh they finally push it to prod, it was in testing with no file sync from February. -
RE: Importance of ECC RAM?
ECC now has mostly the same price as non-ECC, and AMD CPU support them for years.
But in general is better to have ECC if using FS that takes advantage of that, BTRFS, ZFS.
Or if you use TMPFS.But if you care about latency then normal RAM is better, ECC slows down communication.
-
RE: Add Pre-Backup and Post-Backup Hooks
@girish said in Add Pre-Backup and Post-Backup Hooks:
Seems to not make sense.
That's normal for ERPs, almost all ERPs require full access to their database.
This is mostly due to the Modular idea for modern ERP, which implements different DB for each module like a microservice.
And communicate between with API or Functions Hooks -
RE: Object Storage or Block Storage for backups of growing 60+ GB?
@marcusquinn
idk what tech is behind their stack, but if it is just HDD with no NVMe for caching metadata or any kind of index.
100% that it will be slow if they grow too much. -
RE: Proxmox VPS with Ubuntu 22.02
@1Psychedelic
do you have proxmox in Bridged, Routed, or Masquerading mode?
Because some time is needed for some custom config base on that before a server is able to access the WAN(aka the internet). -
RE: Zabbix - network monitoring solution
@BrutalBirdie
fantastic, so we don't need to do crazy remapping/system link to go around the read onlyfs. -
RE: ERPNext - cost-effective ERP solution
@nj
that is correct if you have ZFS or BTRFS, that can do a snapshot instantaneity.
But cloudron uses a simple compression or rsync, which means that from when it starts and when it stops it takes time and in that time, data could be changed and the relationship could come out corrupted.postgress in their documentation, for example, suggests that if you want to use an fs snapshot you should stop the DB.
-
RE: ERPNext - cost-effective ERP solution
@nj said in ERPNext - cost-effective ERP solution:
Cloudron totally takes care of backup and restore and I have already tested it
Not really, cloudron takes a snapshot of /app/data, and your database I guess don't create a dump before that happened.
That's not really stable as a solution.If you could like get a dump every x time, that could be a solution, even if not perfect
-
RE: Pterodactyl Panel & Pterodactyl Node (each as own app)
@LoudLemur
The issue is that tech change so fast and maybe my information are old.
But ty