mirror of
https://github.com/stoatchat/self-hosted.git
synced 2026-07-21 12:35:23 -04:00
Bug: Issue with file uploads #70
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mirkohubtv on GitHub (Oct 1, 2024).
What happened?
Hi there,
I’m trying to self-host Revolt following the official repository on my Windows 11 machine with Docker.
Everything is working fine except for the file uploads (Autumn endpoint). I’ve followed the guide step by step and tried multiple solutions, but after hours of debugging, I still can’t figure out what’s causing the issue.
If anyone has experience with this or can point me in the right direction, I’d greatly appreciate it. I’ve been stuck for quite some time, and I’m running out of ideas. I’m also open to a Discord or Revolt call if that makes troubleshooting easier.
Thanks in advance for any help!
@insertish commented on GitHub (Oct 2, 2024):
What image tag of autumn are you using?
@mirkohubtv commented on GitHub (Oct 2, 2024):
The latest, i just used the git clone command and docker compose up
@FifthSparrow commented on GitHub (Oct 4, 2024):
I am also getting this same issue (except with a status error of 500) with
autumn:1.1.11on a fresh install.Unrelated to this error, but
files.s3.default_bucketin Revolt.toml should probably be renamed from "revolt-uploads" to "attachments". And the caddyfile should use port 3000 instead of 14704 forautumn:1.1.11. It seems that the latest container images for autumn after 1.1.11 are now using port 14704, but they seem to error out for me when I try to docker run them:@mirkohubtv commented on GitHub (Oct 4, 2024):
I solved my issue by running autumn in a separate instance, you may try it. We need to wait a fix.
@FifthSparrow commented on GitHub (Oct 4, 2024):
Do you mean running autumn as a separate docker container outside the docker compose.yaml file? Could you please share how you configured that?
@mirkohubtv commented on GitHub (Oct 4, 2024):
Sure.
You may proxy via nginx the port 8081 like
autumn.example.comand configurate it on Revolt .env/.toml filesAnd that's it. You now can upload files. If you need more help with setup feel free to contact me on Revolt
MirkoHubTV#8516or Discord:mirkohubtv.@FifthSparrow commented on GitHub (Oct 5, 2024):
@mirkohubtv Thank you! That worked. For anyone who wants to do that using docker:
@JoCat commented on GitHub (Oct 8, 2024):
Changing the port for autumn to 3000 in Caddyfile worked for me
@kotazzz commented on GitHub (Oct 9, 2024):
Me too. Thank you for help