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


Skip to content
  • 1 Votes
    5 Posts
    24 Views
    T
    Thanks @nebulon - It seems as overnight contributors have reported/added more information. I will certainly contribute if anything meaningful comes up from our side. In the meantime, the issue remains for now (previous version works though.)
  • Cal.com - Package Updates

    Pinned Cal.com
    300
    1 Votes
    300 Posts
    87k Views
    Package UpdatesP
    [2.9.11] Update cal.com to 5.9.11 Full Changelog fix: OnDelete SetNull for watchlist delete on watchlistAudit by @alishaz-polymath in #25690 fix: unable to reject the booking from email by @anikdhabal in #25673 refactor: migrate handleNotificationWhenNoSlots from TRPC layer to features layer by @hbjORbj in #25538 refactor: migrate verifyCodeUnAuthenticated from TRPC layer to features layer by @hbjORbj in #25639 perf: handleChildrenEventType eventtype user connect raw sql by @ThyMinimalDev in #25650 perf: handleChildrenEventTypes createManyAndReturn by @ThyMinimalDev in #25652 perf: handleChildrenEventType link old event-type with workflows using create/findMany by @ThyMinimalDev in #25653 fix: add fallback discovery for oauth by @volnei in #25656 fix: prevent OOO dialog from closing on outside click by @volnei in #25699 feat: onboarding v3 QA final roast by @sean-brydon in #25667
  • 0 Votes
    6 Posts
    27 Views
    nebulonN
    the new package now disables the max body check for the nginx within the app. I couldn't quite reproduce the issue in my setup, not sure how you ended up with such big queries, but hopefully it fixes your case.
  • Ollama - Package Updates

    Pinned Ollama
    14
    0 Votes
    14 Posts
    1k Views
    Package UpdatesP
    [1.1.3] Disable body size check within the app
  • AdGuard Home - Package Updates

    Pinned AdGuard Home
    95
    1 Votes
    95 Posts
    41k Views
    Package UpdatesP
    [1.14.10] Update AdGuardHome to 0.107.71 Full Changelog In this release, the schema version has changed from 31 to 32. Added a new string fields dns.cache_optimistic_answer_ttl and dns.cache_optimistic_max_age. Optimistic DNS cache not working ([#​8148]).
  • Mastodon - Package Updates

    Pinned Mastodon
    83
    0 Votes
    83 Posts
    30k Views
    Package UpdatesP
    [1.17.3] Update mastodon to 4.5.3 Full Changelog Fix inconsistent error handling leaking information on existence of private posts (GHSA-gwhw-gcjx-72v8) Fix Delete and Redraft on a non-quote being treated as a quote post in some cases (#37140 by @ClearlyClaire) Fix YouTube embeds by sending referer (#37126 by @ChaosExAnima) Fix streamed quoted polls not being hydrated correctly (#37118 by @ClearlyClaire) Fix creation of duplicate conversations (#37108 by @oneiros) Fix extraneous noreferrer in external links (#37107 by @ChaosExAnima) Fix edge case error handling in some database migrations (#37079 by @ClearlyClaire) Fix error handling when re-fetching already-known statuses (#37077 by @ClearlyClaire) Fix post navigation in single-column mode when Advanced UI is enabled (#37044 by @diondiondion) Fix tootctl status remove removing quoted posts and remote quotes of local posts (#37009 by @ClearlyClaire)
  • DocuSeal - Package Updates

    Pinned DocuSeal
    117
    4 Votes
    117 Posts
    40k Views
    Package UpdatesP
    [1.12.5] Update docuseal to 2.2.5 Full Changelog Allow to require email 2FA with one time code via template preferences
  • Metabase - Package Updates

    Pinned Metabase
    472
    1 Votes
    472 Posts
    301k Views
    Package UpdatesP
    [2.27.4] Update metabase to 0.57.5.7 Full Changelog
  • How To Integrate OpenID Cloudron with Cloudflare Access?

    Unsolved Support
    3
    2
    1 Votes
    3 Posts
    44 Views
    I
    @joseph Yes, I am trying to follow the documentation but its still error
  • 2 Votes
    1 Posts
    12 Views
    No one has replied
  • 0 Votes
    2 Posts
    12 Views
    robiR
    For now it seems to require using an incognito browser until they add the feature.
  • Restoring Backups fails

    Unsolved Support backups restore
    20
    1 Votes
    20 Posts
    1k Views
    D
    [image: 1765248455116-cloudron_tarextract_pipeline-error.png] Experiencing the same issue with CIFS mounts. Creating backups work seamlessly. When you go to restore it attempts to restore a small subset of files 3 times before displaying the error. I noticed when I go to restore the app it doesn't prompt for an encryption password, perhaps an internal issue with storing of the encryption hash?
  • Can't switch user because of OIDC issue

    Solved Mastodon
    4
    0 Votes
    4 Posts
    830 Views
    saikarthikS
    @girish What is the latest on OIDC logout support?
  • 9 Votes
    21 Posts
    4k Views
    jadudmJ
    @girish Glad to serve. If the goal is an addon, then... I think the backup piece should be straight-forward? (I have some more info in the packaging thread about this.) Essentially, you want to make sure the SQLite DB is backed up, and then you backup the filesystem. I have questions about what happens if (say) a restore happens (e.g. what if the filesystem path changes?), but those things can be explored. There is an administrative API that (once you generate a secret/trusted admin API token) lets you do everything administratively via that API (bucket creation, etc.). As to a web interface, I would not recommend you create one for end-users. (I suspect this is not what you mean.) You have NextCloud, XBackBone, and other apps that can talk to an S3-compatible backend for file browsing. What people might need/want is a way to: Create/remove buckets (which, on the backend, you'd use your secret admin key) Create/remove keys and attach them to buckets Create/remove administrative keys (for superusers who want to script things against the backend) Bonus: the ability to designate a bucket as a static site, and then you do the DNS work on the backend to point either a subsubdomain at it (e.g. site.s3.example.com) or a whole new domain (e.g. someothersite.com -> site.s3.example.com) I suspect you could iterate towards this, if you wanted to. Release it with terminal-only management to start, and work towards an admin interface for common bucket creation/removal-type tasks. There are things that Garage does not do (e.g. lifecycle rules), so this is not a "full" S3 clone (the way Minio aspired to be). ~~In this regard, SeaweedFS might offer more features (and a built-in admin UI)... so, it might be worth doing a spike to explore it as well. At a glance, it is similar, but it also is intended to scale (e.g. it does Raft consensus and Reed-Solomon EC if you want it) in a way that Garage does not. This might also be a reason to not use Seaweed. I can poke it with a stick if it would be valuable~~. Update, a few hours later: I would recommend sticking with Garage.
  • Old backup not found when updating app

    Solved Support backups updates
    19
    1 Votes
    19 Posts
    170 Views
    F
    @girish Thanks ! I replaced the /home/yellowtent/box/src/storage/gcs.js with the patched version and don't get the "old backup not found" error. the backup is listed in System backups. everything seems to be fine ! Thanks a lot for your help !
  • [GUIDE] Move PeerTube video storage to Hetzner S3

    Moved PeerTube guides
    8
    6 Votes
    8 Posts
    597 Views
    S
    Hi all. Anyone tried this with DigitalOcean Spaces? Is there a guide somewhere for that?
  • Issues with fetching user profile

    SOGo
    3
    1 Votes
    3 Posts
    13 Views
    marioM
    I've restarted SOGO multiple times, but it does seem MySQL restart has put it back up temporarily. Let's see - will follow up.
  • Zulip - Powerful open source group chat

    App Wishlist
    96
    51 Votes
    96 Posts
    36k Views
    marcusquinnM
    @composer nice. you compared to Element recently? any deal-breaker differences?
  • Cloudron 9.0 (beta) bug reports

    Locked Discuss
    205
    1 Votes
    205 Posts
    12k Views
    J
    I will lock this thread since technically 9.x is not really in beta anymore . Please open new threads for issues . Under Support or Discuss as you see fit.
  • 2 Votes
    3 Posts
    36 Views
    girishG
    Fixed in https://git.cloudron.io/platform/box/-/commit/9773c02e7d6fda7a9704ad8866d7e16ba11dcae3