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


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
jamesJ

james

@james
Staff
About
Posts
541
Topics
1
Shares
0
Groups
1
Followers
5
Following
1

Posts

Recent Best Controversial

  • How to use redis in n8n
    jamesJ james

    And this seems to be a duplicate of https://forum.cloudron.io/topic/8677/how-to-use-redis-in-n8n
    Merging your topic.

    N8N

  • How to use redis in n8n
    jamesJ james

    Hello @ikka
    Redis needs to be added from the Cloudron staff.
    I have created an internal ticket to review this.

    N8N

  • Recurrent Cloudron Downtime - Request for Support
    jamesJ james

    Hello @Felipe.rubilar
    If you feel comfortable doing so, please provide the logs of your system, so people here can take a look.
    Also, since you are monitoring CPU, RAM, storage, etc please provide some Screenshots of the weeks where this issue arrises.

    Support aws ec2 unresponsive

  • Federation testing fails unless port 8448 is forwarded to 443
    jamesJ james

    Also, you have to use the base domain in the federation tester not e.g. synapse.cloudron.club.

    Matrix (Synapse/Element)

  • New to Cloudron & Matrix/Element
    jamesJ james

    Hello @stefanwirtz

    @stefanwirtz said in New to Cloudron & Matrix/Element:

    after this step I tried verifying the settings via SSH on my VPS server and only got error messages.

    What did you try to verify and how, and what was the error message?

    .well-known is served for the root domain see https://docs.cloudron.io/domains/#well-known-locations

    Quote:

    Requires app on bare domain
    In the above example, an app must be installed on the bare domain https://cloudron.club for Cloudron to be able to respond to well known queries.

    Did you follow this step?

    Matrix federation can be tested with this web tool: https://federationtester.matrix.org and in there you put the bare domain e.g. cloudron.club and not synapse.cloudron.club.

    Matrix (Synapse/Element)

  • Integrated Redis
    jamesJ james

    Hello @firmansi
    Thanks for the feedback.
    I was only able to confirm it was working with a debug startup.
    So it is very good to read from you that it is in fact working.

    OpenWebUI

  • Integrated Redis
    jamesJ james

    @firmansi
    I see you have noticed the update https://forum.cloudron.io/post/111557

    OpenWebUI

  • Gigantic blunder caused by a lack of warnings
    jamesJ james

    Hello @tsu.douady and welcome to the Cloudron Community Forum

    Cloudron does configure outgoing mails for the GitLab App automatically.

    @tsu.douady said in Gigantic blunder caused by a lack of warnings:

    I really feel like it shouldn't be this easy to end up in this situation. It's really badly lacking a big warning somewhere to tell me that it's a bad idea to attach an inbox containing thousands of existing emails to the Gitlab app.

    Good point.
    We will add this warning to https://docs.cloudron.io/packages/gitlab/#incoming-email

    GitLab

  • Integrated Redis
    jamesJ james

    Hello @firmansi
    Thanks for the clarification, I will look into it.

    OpenWebUI

  • Integrated Redis
    jamesJ james

    Hello @firmansi
    Are you referring to the latest release v0.6.19 with the following patch note:

    🚀 Efficient Redis Connection Management: Implemented a shared connection pool cache to reuse Redis connections, dramatically reducing the number of active clients. This prevents connection exhaustion errors, improves performance, and ensures greater stability in high-concurrency deployments and those using Redis Sentinel.

    Would you like this Redis feature you are looking for?

    Since there is also REDIS_SENTINEL_HOSTS for scaled hosting environments like K8S, so I highly doubt you are referring to that one.

    OpenWebUI

  • Integrated Redis
    jamesJ james

    I am looking into it.

    OpenWebUI

  • all-in-one wp migration cannot be scheduled!
    jamesJ james

    Hello @ImatBagjaGumilar
    Please provide more details about your issue.
    When are you scheduling the All in One WP Migration backups? Do you see anything in the app logs for this timeframe?

    WordPress (Managed)

  • 3.93.1 was the last stable release of n8n (fixed in 3.97.0)
    jamesJ james

    Hello @umnz
    Thanks for reporting this.

    N8N

  • Deploying Anubis (AI Crawler Filtering) on a Cloudron Server
    jamesJ james

    Hello @hareen
    That sounds great! Would you be willing to write up a detailed how to post?

    Discuss

  • SFTP to LAMP
    jamesJ james

    Issue was reproduced and is getting looked into.

    Support sftp

  • SFTP to LAMP
    jamesJ james

    Yes, only app operators and admins can use the SFTP.

    Support sftp

  • Missing model even with configured Api Key
    jamesJ james

    Second try.
    I got it working in LibreChat much faster.
    I added this to /app/data/env:

    PERPLEXITY_API_KEY="YOUR-API-TOKEN-GOES-HERE"
    

    And after reading https://www.librechat.ai/docs/configuration/librechat_yaml/ai_endpoints/perplexity and adding this config to the /app/data/librechat.yaml I found multiple issues with this sample config.
    First there were some error about something being wrong in this yaml and after fixing that, the logs complained that:

    Error 400 Invalid model 'llama-3-sonar-small-32k-chat'. Permitted models can be found in the documentation at https://docs.perplexity.ai/guides/model-cards.
    

    So I fixed and tweaked this config to:

    version: 1.2.4
    
    endpoints:
      custom:
        - name: "Perplexity"
          apiKey: "${PERPLEXITY_API_KEY}"
          baseURL: "https://api.perplexity.ai/"
          models:
            default:
              - "sonar-deep-research"
              - "sonar-reasoning-pro"
              - "sonar-reasoning"
              - "sonar-pro"
              - "sonar"
              - "r1-1776"
            fetch: false
          titleConvo: true
          titleModel: "sonar"
          summarize: false
          summaryModel: "sonar"
          forcePrompt: false
          dropParams:
            - "stop"
            - "frequency_penalty"
          modelDisplayLabel: "Perplexity"
    

    Which is working when using sonar, sonar-pro, sonar-reasoning, sonar-reasoning-pro but for some reason sonar-deep-research returns nothing.

    I hope this helps and solves your issue.

    LibreChat

  • Missing model even with configured Api Key
    jamesJ james

    Hello @p44
    Yes, I did. . .
    Sorry for that, I will look into LibreChat also.

    LibreChat

  • Hetzner Storage Box not working
    jamesJ james

    Hello @JueBam
    Did you put your ssh public key into the storage-box?
    Maybe you can give us some more details so we can figure out this issue together.

    Support backup hetzner storagebox
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search