Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content

Discuss

Feedback, suggestions, anything else Cloudron related

948 Topics 8.1k Posts
  • Security: Cloudflare vs Google Cloud DNS

    Moved
    2
    1 Votes
    2 Posts
    110 Views
    girishG

    I can't answer for Cloudflare DNS and it's security benefits. But on Cloudron side, it's quite straightforward to change the DNS provider. Just click on the Domain, it will open up a edit domain dialog and change the provider to Cloudflare.

  • 2 Votes
    5 Posts
    309 Views
    humptydumptyH

    I'm getting a sync error (floccus firefox + nextcloud). I might have messed up the step where you select the default location of the "folders" used for syncing. What settings are you guys running?

    Syncing failed with E019: HTTP status 404. Failed POST request. Check your server configuration and log.

    BTW, that's the message from the downloaded log that the plugin spat out. Unless there's a different log somewhere?

    SOLVED: I didn't install the Nextcloud Bookmarks plugin. Darn Monday mornings 🙄

  • 1 Votes
    6 Posts
    520 Views
    girishG

    @humptydumpty i really want search working on the browser and mobile app 🙂

  • 0 Votes
    6 Posts
    98 Views
    humptydumptyH

    @girish I couldn't ping other devices and then I noticed the gateway is different (via ipconfig). MB! I remembered that I'm using the guest wifi (easy to remember pass) since I can't access my vaultwarden to get the credentials for my main wifi. If I wasn't on the same network, why would my connection to the homeserver stay internal (via local IP) instead of accessing the apps thru the domain like any other website?

    After connecting to the main wifi, I can access the apps/homeserver just fine.

  • 1 Votes
    13 Posts
    268 Views
    L

    @timconsidine said in Cloudron Documentation Ideas:

    I find Cloudron documentation fine in its current form

    Cloudron has good quality documentation, I agree.

  • Cloudron Vagrant box

    5
    1 Votes
    5 Posts
    99 Views
    Q

    @girish worked like a charm.

    Repository is here: https://git.cloudron.io/QuHu/cloudron-vagrant-box

    For all who might make use of it.

  • Web3.storage on Cloudron

    5
    0 Votes
    5 Posts
    133 Views
    girishG

    @LoudLemur no plans yet. Do you know if other storage tools support this?

  • Cloudron & Webuzo

    9
    1 Votes
    9 Posts
    164 Views
    nebulonN

    I think both products take a very different approach on server administration, Cloudron focuses on the apps and webuzo apparently more on providing UI for sysadmin tasks. On Cloudron we basically try to minimize the exposer of those.

  • 5 Votes
    9 Posts
    485 Views
    robiR

    Something to add Cloudron to:
    https://github.com/RunaCapital/awesome-oss-alternatives

  • Misskey and Calckey storage report

    2
    1 Votes
    2 Posts
    67 Views
    girishG

    I had to look up what these are. Misskey - https://misskey-hub.net/en/ and Calckey - https://calckey.org/

  • 0 Votes
    9 Posts
    115 Views
    nebulonN

    I have added the ctrl+shift+c copy to clipboard for the terminal now. https://git.cloudron.io/cloudron/box/-/commit/67c0a4f5133a04e07032233cbba669732391921e

  • Wifi / network controller apps

    Moved
    2
    1 Votes
    2 Posts
    99 Views
    girishG

    Do you mean like https://forum.cloudron.io/topic/2418/unifi-cloud-controller ?

    I think shinobi is https://forum.cloudron.io/topic/7308/cloudron-cctv-home-protection . Maybe you can add a separate App Request for shinobi, I can't seem to find it

  • ChatGPT self-hosted on Cloudron?

    2
    0 Votes
    2 Posts
    85 Views
    timconsidineT

    search for Chatpad

  • 1 Votes
    6 Posts
    167 Views
    scookeS

    Though it's listed as not suitable for production, I've had good success sharing large media files using Cubby - it was simple!

  • Time for more Wordpress and Drupal flavors?

    Moved
    1
    1 Votes
    1 Posts
    48 Views
    No one has replied
  • Public Services with Cloudron SSO or OIDC?

    9
    1 Votes
    9 Posts
    105 Views
    marcusquinnM

    Perhaps this is more suited to a Keycloak instance?

  • Apps with OpenID Connect Provider (beta)

    Moved
    13
    0 Votes
    13 Posts
    574 Views
    andreasduerenA

    I'm still struggling to properly set up openID with my applications. For example with Leantime I get The received provider https://my.domain.tld/openid does not match the local setting https://my.domain.tld/.well-known/openid-configuration after authentification. And ctfreak will complain that redirect_uris for native clients using http as a protocol can only use loopback addresses as hostnames and using https won't work.

  • 1 Votes
    20 Posts
    869 Views
    randyjcR

    You could try/experiment with using rclone.
    create a config for your desired mount, for example google drive.
    Mount that via systemd and then point your backups to that location.

    For example:
    d39b4f53-a684-4ef5-a73c-d211fed3c4e6-image.png

    5763fb36-5be4-40f8-89e4-1c69e8a87378-image.png

    [Unit] Description=rclone Service Google Drive Mount Wants=network-online.target After=network-online.target [Service] Type=notify Environment=RCLONE_CONFIG=/root/.config/rclone/rclone.conf RestartSec=5 ExecStart=/usr/bin/rclone mount google:cloudron /mnt/google \ # This is for allowing users other than the user running rclone access to the mount --allow-other \ # Dropbox is a polling remote so this value can be set very high and any changes are detected via polling. --dir-cache-time 9999h \ # Log file location --log-file /root/.config/rclone/logs/rclone-google.log \ # Set the log level --log-level INFO \ # This is setting the file permission on the mount to user and group have the same access and other can read --umask 002 \ # This sets up the remote control daemon so you can issue rc commands locally --rc \ # This is the default port it runs on --rc-addr 127.0.0.1:5574 \ # no-auth is used as no one else uses my server --rc-no-auth \ # The local disk used for caching --cache-dir=/cache/google \ # This is used for caching files to local disk for streaming --vfs-cache-mode full \ # This limits the cache size to the value below --vfs-cache-max-size 50G \ # Speed up the reading: Use fast (less accurate) fingerprints for change detection --vfs-fast-fingerprint \ # Wait before uploading --vfs-write-back 1m \ # This limits the age in the cache if the size is reached and it removes the oldest files first --vfs-cache-max-age 9999h \ # Disable HTTP2 #--disable-http2 \ # Set the tpslimit --tpslimit 12 \ # Set the tpslimit-burst --tpslimit-burst 0 ExecStop=/bin/fusermount3 -uz /mnt/google ExecStartPost=/usr/bin/rclone rc vfs/refresh recursive=true --url 127.0.0.1:5574 _async=true Restart=on-failure User=root Group=root [Install] WantedBy=multi-user.target # https://github.com/animosity22/homescripts/blob/master/systemd/rclone-drive.service
  • 2 Votes
    6 Posts
    2k Views
    girishG

    Please follow the thread at https://forum.cloudron.io/topic/9333/hetzner-storage-box-cifs . Just trying to keep all this CIFS related stuff in one place.

  • 0 Votes
    24 Posts
    850 Views
    L

    @marcusquinn said in Installing Cloudron after other software has been setup:

    @LoudLemur I think you'll find it surprisingly easy and empowering.

    HAha! That is exactly what I wanted to hear! haha. There is no time like the present...

    You are great, and cheers!