Caddyfile for running Lemmy
How to follow Lemmy community from Mastodon
Spent a couple of hours.. wanted to follow a Lemmy community from group.lt instance on Mastodon. Here is a working config for Caddy (Caddyfile):
group.lt {
reverse_proxy http://lemmy_lemmy-ui_1:1234
tls saint@ghost.lt {
}
@lemmy {
path /api/*
path /pictrs/*
path /feeds/*
path /nodeinfo/*
path /.well-known/*
}
@lemmy-hdr {
header Accept application/*
}
@lemmy-post {
method POST
}
handle @lemmy {
reverse_proxy http://lemmy_lemmy_1:8536
}
handle @lemmy-hdr {
reverse_proxy http://lemmy_lemmy_1:8536
}
handle @lemmy-post {
reverse_proxy http://lemmy_lemmy_1:8536
}
The key point here was
@lemmy-hdr {
header Accept application/*
}
I have taken a hint from lemmy.coupou.fr
and from some nginx conf for lemmy
Commen in the Fediverse @saint@river.group.lt