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


Skip to content

Announcements

Announcements regarding Cloudron

221 Topics 2.5k Posts
  • Apache Guacamole is now available

    1
    6 Votes
    1 Posts
    341 Views
    No one has replied
  • Topics are now locked after 30 days

    7
    4 Votes
    7 Posts
    228 Views
    girishG

    Alright, I had to go the database and reset the lock state of all the posts 😕 Unfortunately, this means I had to reset genuinely locked posts as well. But I think we can live with that.

    For future reference, I had to run this in the MongoDB shell:

    x = db.getCollection('objects') x.updateMany({ _key: { $regex: /^topic:\d+/ } }, { $set: { locked: 0 } })

    On a side note, NodeBB code is so well done 🙂

  • 6 Votes
    6 Posts
    297 Views
    marcusquinnM

    TBH I think if it's content-focused, just go default Casper. The headers don't change regardless of light-dark-mode.

  • Cloudron 5.5 released

    1
    4 Votes
    1 Posts
    127 Views
    No one has replied
  • What's coming in 5.5

    10
    9 Votes
    10 Posts
    771 Views
    nebulonN

    We usually take a day or two to find any regressions and would release a patch version then. Then again we would wait for 1 or 2 days in case a regression is still there. If it goes smooth we will put it for auto-update in a couple of days latest.

  • German VAT adjustment

    3
    2 Votes
    3 Posts
    238 Views
    subvenS

    It is until 31.12.2020 for Germany.

  • Changes to the referral system

    2
    11 Votes
    2 Posts
    154 Views
    marcusquinnM

    Very fair - there's always one eh! But I consider them free penetration testers 🙂

  • Cloudron 5.4 released

    7
    2 Votes
    7 Posts
    263 Views
    ?

    How about a dynamic total of apps in the Store (minus unstables)? --- currently = 84

  • New Feature Requests Category

    1
    3 Votes
    1 Posts
    117 Views
    No one has replied
  • Vault

    4
    3 Votes
    4 Posts
    454 Views
    girishG

    This app is marked as stable now.

  • What's coming in 5.4

    19
    12 Votes
    19 Posts
    1k Views
    girishG

    @Hillside502 Ah that explains why the value of 2 never worked for me till I changed system settings.

  • Referral program

    13
    6 Votes
    13 Posts
    566 Views
    girishG

    I have deployed the referral link change. You will now see the full referral link. If you see the link being clipped, just refresh the page (I think it's because browser has cached the old style sheet or some CDN issue, not sure).

  • Trilium Notes

    2
    3 Votes
    2 Posts
    376 Views
    girishG

    I have marked this app as stable. Forum section is at https://forum.cloudron.io/category/95/trilium

  • YOURLS

    14
    5 Votes
    14 Posts
    1k Views
    marcusquinnM

    Love this!

    Do you fancy adding some useful plugins to the mix?

    https://github.com/YOURLS/awesome-yourls

    And theme option:

    https://github.com/tomslominski/infinity-squared

    https://github.com/Flynntes/Sleeky

  • Cloudron 5.3 released

    1
    4 Votes
    1 Posts
    97 Views
    No one has replied
  • Pixelfed

    45
    8 Votes
    45 Posts
    3k Views
    girishG

    I have added tests and marked pixelfed as stable. Thanks all for testing!

  • What's coming 5.3

    26
    8 Votes
    26 Posts
    1k Views
    girishG

    There is also https://git.cloudron.io/cloudron/tutorial-nodejs-app which is a template for a custom nodejs app

  • Cloudron 5.2 released

    10
    1 Votes
    10 Posts
    341 Views
    JOduMonTJ

    for what it worth, in my /etc/docker/daemon.json I always define.

    { "no-new-privileges": false }

    which from what I understand prevent container processes to gain additional privileges after their start.

    ref: Docker Daemon more explanation from the Project Atomic by RedHat
  • Metabase

    2
    4 Votes
    2 Posts
    329 Views
    girishG

    We now have tests for Metabase and I have marked it as stable.

  • What's coming in 5.2

    39
    8 Votes
    39 Posts
    2k Views
    girishG

    @necrevistonnezr Good catch. Looks like we got the uniqueness constraint in 5.1 itself wrong. Currently, it is (name, userid). It shoud be (name, appid, userid) or maybe even just (appid, userid). We cannot fix it for this release but maybe the next since we try to do db changes only in new releases.