Kann mein Forum nicht zur DiscourseHub iOS App hinzufügen

Hallo

Wenn ich versuche, mein Forum in der DiscourseHub iOS-App hinzuzufügen, erhalte ich diese Fehlermeldung:
domain.tld wurde nicht gefunden!
Dies steht im Nginx-Log:
a.b.c.d - - [07/Nov/2022:19:13:46 +0100] "HEAD /user-api-key/new HTTP/2.0" 400 0 "-" "Discourse/381 CFNetwork/1399 Darwin/22.1.0"

Außerdem habe ich die Standardeinstellungen für die Benutzer-API.


Und mein Forum befindet sich hinter einem Nginx Reverse Proxy.
Relevante Konfiguration:

location / {
        proxy_pass http://127.0.0.1:8080/;
        proxy_cache my_cache;
        proxy_read_timeout 90;
        proxy_redirect http://localhost:8080/ https://domain.tld;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header Host $http_host;
        proxy_redirect off;
        # Socket.IO Support
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
}

Hat jemand eine Idee, wie dieses Problem behoben werden kann?

Vielen Dank für Ihre Hilfe,
David

Das Deaktivieren von proxy_cache hat dieses Problem behoben.

3 „Gefällt mir“

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.