Nice!!!! Good work!
murgero
Posts
-
WireGuard is now available -
Connection not private - whole Cloudron down"net::ERR_CERT_AUTHORITY_INVALID" this error means your client PC has a CA issue, not your cloudron. This is likely cause the cert didn't update after changing the default domain (I assume is what you are doing). Is it working now that it's sat for a minute, it may have renewed that cert.
-
Foundry Virtual Tabletop@matt-derrick Checkout his readme for information on installing: https://github.com/BrutalBirdie/cloudron-foundryvtt?tab=readme-ov-file#how-to-install-from-public-image
-
Vaultwarden - Package Updates@Package-Updates This update is very important! It fixes a CVE
From the Github directly:
This release further fixed some CVE Reports reported by a third party security auditor and we recommend everybody to update to the latest version as soon as possible. The contents of these reports will be disclosed publicly in the future.
-
Setting up DOT or DOHI assume you've looked here as well: https://docs.cloudron.io/apps/adguard-home/#doh
-
Setting up DOT or DOHIs the service enabled in agh? Also check the ports used by agh in the cloudron dashboard to confirm it's using the correct port
-
Issue embedding iframesI believe you have to modify the content security policy: (note: this is the default for LAMP, not sure what you need for moodle but a google might help:
Moodle CSP allow iframe
or something)
-
Wallos - Simple subscription trackerI'm up-voting this app cuase this is a neat idea! But for those looking to have this now or try it out early before it gets adoption into cloudron (if at all) it is PHP based and can be installed into the LAMP app!!!
-
Upgrade Cloudron on LinodeI would backup everything and then in a new linode vps install 24.04. Then cloudron on that new server. Then restore the backup data. Once you confirm the new cloudron is online fully and working you simply turn off the old one and point all the DNS records to the new one (if not already) then wait a few days to make sure everything is good then delete the old one.
https://docs.cloudron.io/backups/#restore-cloudronIf you want the former follow in order:
-
CLI in apps: files and directory created got root ownershipThe terminal for most apps (if not all) default to login as "root" so this is by design. Restarting fixes the perms cause the startup script switches them to whatever the app needs (in wordpress's case it's www-data" if you wanna make it like that from the get go:
Use either:
chown www-data:www-data <whatever dir>
Or:
su - www-data
then mkdir where ever you need it:mkdir <whatever dir>
-
TownEssentially open source, decentralized discord clone? I like it.
-
NPM clean-install in public folder - command not found@ccfu oh ok so node is also not in the path for www-data. Try this instead:
-
Add the Node binaries to PATH:
- Run command:
PATH=$PATH:/usr/local/node-18.18.0/bin/
- Run command:
-
Now run npm or node:
- Run command:
npm clean-install
- Run command:
Note - you will need to run that PATH command everytime you reset the www-data session (so whenever you login/logout to the terminal or via ssh / etc)
-
-
NPM clean-install in public folder - command not foundUse the full path to it as it is probably just not in the $PATH var for www-data:
/usr/local/node-18.18.0/bin/npm <args>
-
Is the app still unstable?Unstable just means its new and in testing (it could still be unstable) but you can install it to test
-
2FAuth- Leave user management to the appAh then sadly there might not be away, unless it's just enabled and you need to make an account via the admin panel? (if there is one?)
-
2FAuth- Leave user management to the app@Botch8891 during install just select "Leave user management to the app"
-
Disconnected: No supported authentication methods available (server sent: publickey)@Dreamcatch22 SSH using the public key you made during installation (either while installing cloudron or the OS you may have made one as the server is asking for it).
-
Wordpress 3.7.0 : impossible to login since the last updateSounds like the ldap plugin disables itself on update and need to login with some kind of local account to re-enable maybe?
-
how to change DNS settings of my server ?@cylon You might need to restart the systemd service that handles your DNS if it's not the one documented by cloudron
-
how to change DNS settings of my server ?@cylon the doc I sent tells you how to setup an upstream dns server which should resolve your issue.