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


Skip to content

Support

Get help for your Cloudron

3.3k Topics 23.8k Posts
  • Separate Cloudron from Main Web Server

    Solved
    8
    0 Votes
    8 Posts
    2k Views
    varunsridharanV
    Is there any update on this ?
  • Q: backup issues and the understanding of mail informations

    backups
    3
    0 Votes
    3 Posts
    801 Views
    luckowL
    @girish yep. minio backend
  • This topic is deleted!

    1
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • How to set the timezone for better log reading?

    Solved logs
    4
    1 Votes
    4 Posts
    1k Views
    girishG
    For a start, we have added a UI to set the timezone for the next release.
  • How to check port status?

    4
    0 Votes
    4 Posts
    1k Views
    V
    The emails I retreive through Mozilla Thunderbird. i tried test send/receive emails with gmail, yahoo, outlook, yandex—it works fine. Some info i just got is the sender uses Amazon SES for mail delivery.
  • 1 Votes
    2 Posts
    791 Views
    nebulonN
    Yes that eventlog entry was simply not created, this was fixed actually a few days ago with https://git.cloudron.io/cloudron/box/commit/93199c7f5bb491629c865b283a46ecdaef59741f
  • Upgrade from 4.3.4 to 4.4.0 : Update Error: Version info mismatch

    update
    3
    0 Votes
    3 Posts
    776 Views
    J
    Thank you @nebulon The update has not happened it. Shows the same error yet. Will patiently wait however if nothing is needed to be done at this point. Thanks!
  • Cloudron running low on resources.... memory - I have 20GB of ram free though

    Solved
    6
    2 Votes
    6 Posts
    2k Views
    girishG
    Indeed, there was a bug which is now fixed for the next release.
  • Startup failure with 4.4.0

    Solved domains notifications
    4
    0 Votes
    4 Posts
    1k Views
    P
    @girish As far as I know, it's correct - unless DKIM has the IP included, since that did change during the migration. Unfortunately, the Email section of Cloudron wasn't properly giving the needed information - previously it was saying DKIM was incorrect, but the display just said something like "expected null to equal null". DKIM isn't showing in the Email status page at all with the workaround I added here. I'll put that in as a separate issue, though, once the update comes out and I see the proper message.
  • Storage differences

    Solved storage
    14
    2
    0 Votes
    14 Posts
    3k Views
    yusfY
    @girish I've never changed backup method no there should not be any remains from that. I did have a directory from april sitting around at 8.6 GB though . Removing that still leaves Other quite large though, so I'll appreciate more hints if you have any.
  • 0 Votes
    2 Posts
    657 Views
    girishG
    @d19dotca Indeed, there was a typo in the eventlog code. I have fixed it for the next release - https://git.cloudron.io/cloudron/box/commit/ae5722a7d4865a1924737a7e7d1697c6c9b94d6e
  • Can I remove tarball backups in snapshot?

    backups
    2
    0 Votes
    2 Posts
    743 Views
    girishG
    @timmeh Your assessment is correct. If you switched the backups to rsync mode, you can remove the .tar.gz files. They are left overs from your previous backup. Maybe we can add an option to remove the old backup files (of previous configs). But of course, that will require cloudron to remember previous config as well. Also, to be 100% clear, only remove the .tar.gz files. Do not remove any other files in the snapshot directory. The snapshot directory is the "working directory" of the backup system and stores the previous state.
  • Co-exist with Dokku?

    docker dokku
    2
    2 Votes
    2 Posts
    732 Views
    girishG
    @spdustin Cloudron doesn't support running any services that are not installed via Cloudron itself. So, it won't co-exist with Dokku. BTW, you can build and install custom apps on Cloudron as well - https://cloudron.io/documentation/custom-apps/tutorial/ . It's very similar to developing and deploying apps on Heroku.
  • ProtonMail support

    2
    0 Votes
    2 Posts
    765 Views
    nebulonN
    As you may know, Cloudron has a built-in email solution (imap/smtp/sieve). This is optional an can be enabled per domain. Sending emails must always work though, for example to send password reset emails. For this Cloudron supports a bunch of email relay providers. Not sure, maybe Proton Mail can be added for this scenario? I am not super familiar with their service though.
  • How to "force" stop an app?

    2
    0 Votes
    2 Posts
    763 Views
    nebulonN
    With the last major release we have reworked quite a bit of the state handling and by now we found a couple of missing state handling. What you describe also falls into this category. We are working on a better fix for this. Generally regarding the "stopping" of an app, do you see anything suspicious in the logs?
  • Weird login behaviour?

    dashboard
    11
    0 Votes
    11 Posts
    1k Views
    ?
    Sorry for my new thread - i did not check if this Issue was already posted on here!, shame on me!
  • Unable to go to https://<IP>

    Solved
    6
    0 Votes
    6 Posts
    1k Views
    nebulonN
    This was resolved in the chat
  • Change Dashboard Domain

    Solved
    3
    0 Votes
    3 Posts
    1k Views
    C
    This has worked. Thanks!
  • queryNs ECONNREFUSED cloudron.intra.example.org

    2
    0 Votes
    2 Posts
    836 Views
    nebulonN
    In your case, the DNS provider should be set to No-op since otherwise the Cloudron will attempt to resolve the domain, which would fail for you.
  • Redirection after login - stops

    5
    0 Votes
    5 Posts
    636 Views
    ?
    So i had a little time to further inspect this issue. I was able to reproduce this every time in following setup: Firefox 70.0.1 (64-Bit), Privacy setting "strict" Typing in the adressbar: my.xxx.tld forwards me to https://my.xxx.tld/api/v1/session/login?returnTo=https://my.xxx.tld/login_callback.html Normal login-screen appears, i fill in my credentials and getting forwarded to https://my.xxx.tld/login_callback.html?token=[STRING]&state=[STRING] This site then does nothing. This is the source-code: <html> <head> <title> Cloudron OAuth Callback </title> <script> 'use strict'; var search = decodeURIComponent(window.location.search).slice(1).split('&').map(function (item) { return item.split('='); }).reduce(function (o, k) { o[k[0]] = k[1]; return o; }, {}); if (!search.token) { console.error('No token found'); } else if (!search.state || !window.localStorage.oauth2State || search.state !== window.localStorage.oauth2State ) { console.error('OAuth2 state error'); } else { // the actual app picks up the access token from localStorage localStorage.token = search.token; // clear oauth2 state delete window.localStorage.oauth2State; var returnTo = window.localStorage.returnTo; delete window.localStorage.returnTo; if (returnTo) window.location.href = returnTo; else window.location.href = '/'; } </script> </head> <body> </body> </html> As @murgero said, yes; when i then just remove the "/login_callback.html?token=[STRING]&state=[STRING]" in address-bar everything works fine. This is the Browserlog, if it helps: Content Security Policy: 'x-frame-options' wird wegen 'frame-ancestors'-Direktive ignoriert. Content Security Policy: 'x-frame-options' wird wegen 'frame-ancestors'-Direktive ignoriert. [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIDOMWindowUtils.removeSheetUsingURIString]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://gre/modules/ExtensionCommon.jsm :: runSafeSyncWithoutClone :: line 75" data: no] 2 ExtensionCommon.jsm:75:12 runSafeSyncWithoutClone resource://gre/modules/ExtensionCommon.jsm:75 cleanup resource://gre/modules/ExtensionContent.jsm:402 close resource://gre/modules/ExtensionContent.jsm:925 destroyed resource://gre/modules/ExtensionContent.jsm:1010 observe resource://gre/modules/ExtensionContent.jsm:1028 Content Security Policy: 'x-frame-options' wird wegen 'frame-ancestors'-Direktive ignoriert. Content Security Policy: 'x-frame-options' wird wegen 'frame-ancestors'-Direktive ignoriert. Content Security Policy: 'x-frame-options' wird wegen 'frame-ancestors'-Direktive ignoriert. [Exception... "Favicon at "https://my.xxx.tld/favicon.ico" failed to load: Not Found." nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource:///modules/FaviconLoader.jsm :: onStopRequest :: line 236" data: no]