this post was submitted on 14 Aug 2023
4 points (100.0% liked)
Lemmy Support
4650 readers
1 users here now
Support / questions about Lemmy.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
This is an error you are getting in your web browser with lemmy-ui? Do you know how to use the console of Firefox or Chrome to look at what API call that error is coming from?
Could be related to your problem... as lemmy-ui doesn't seem to be talking to the API to get JSON responses. I suggest looking at your proxy logs at the instant you press submit on the form.
OK thanks for the tip.
Firefox, F12, debugger
Caddy log
{"level":"error","ts":1692060935.893172,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"49.159.84.13","remote_port":"41462","client_ip":"IP_REDACTED","proto":"HTTP/2.0","method":"POST","host":"tw.arkadi.one","uri":"/api/v3/user/register","headers":{"Referer":["https://tw.arkadi.one/setup"],"Cookie":[],"Content-Type":["application/json"],"Accept-Encoding":["gzip, deflate, br"],"Dnt":["1"],"Te":["trailers"],"User-Agent":["Mozilla/5.0 (Windows NT 10.0; rv:109.0) Gecko/20100101 Firefox/116.0"],"Origin":["https://tw.arkadi.one"],"Sec-Fetch-Dest":["empty"],"Content-Length":["112"],"Accept-Language":["en-CA,en-US;q=0.7,en;q=0.3"],"Sec-Fetch-Mode":["cors"],"Sec-Fetch-Site":["same-origin"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4865,"proto":"h2","server_name":"tw.arkadi.one"}},"bytes_read":0,"user_id":"","duration":0.002207562,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
I don't see anything wrong here though it says it is an error. Hmm.
EDIT: Ok one thing that could be wrong is it says the protcol is HTTP/2.0.
I noticed on the troubleshooting page of Lemmy it says
So, I am now searching if I can get Caddy to serve HTTP/1.1 for websockets?
These aren't really what you are looking for in the Firefox console. They tell you the line of code with the error, but not which page has the JSON missing itself.
I notice your server says Lemmy 0.18.0 - the current is 0.18.4 - any reason you are attempting an older version?
those are the kind of paths you are looking for that can't be reached and your proxy likely isn't forwarding correctly to the lemmy_server Rust app.
I am running this on an arm64 server and there isn't an official docker build for arm.
I figured out how to get past that screen.
I added this to my Caddyfile after reading this https://caddy.community/t/caddy-v2-how-to-proxy-websoket-v2ray-websocket-tls/7040/9
I got my instance running. Thanks for the suggestions.
Lemmy 0.18.x doesn't use websockets that I know, so I'm not sure why this helped.
I mentioned you are trying to use arm on GitHub... https://github.com/LemmyNet/lemmy/issues/3102
Thanks! I was going to post something on the documentation github about my hack. I'm not sure why it worked but adding that worked.
Maybe it is something to do with Caddy and Nginx not working well together?
We really need an ARM build of this though.