Mastodon Account Creation #5
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Fediversity/meta#5
Loading…
Reference in a new issue
No description provided.
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?
From @taeer:
This is now implemented in https://git.fediversity.eu/taeer/mastodon-deployment.
The problem was that mastodon only likes to be accessed from port 443, but you can't forward port 443 in qemu so easily.
The initial solution was to use a proxy server connected to the VM, and then configure firefox to use that proxy server. This was a ton of manual steps, though.
It turns out that in development mode, you can set services.mastodon.enableUnixSocket = false, and then directly access mastodon on port 55001 (bypassing nginx entirely). If I recall correctly I had tried each of these separately but not at the same time.
In any case, this suggests that the problem may be with nginx not with mastodon itself.
For now though, we have a way to create accounts.
From @theophane:
Paired with @taeer on this today.
After a painful debugging session, it turns out that Mastodon doesn't like being exposed on a port other than 443. Accessing it on port 443 fixes the issue (but is rather painful for a local VM-based deployment)