Fix http_accept header in nginx.conf for docker install (#209)

This commit is contained in:
z01L 2023-06-14 22:32:16 +12:00 committed by GitHub
parent a9a90568f1
commit d0ec1a8d2b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,10 +59,7 @@ http {
# don't change lemmy-ui or lemmy here, they refer to the upstream definitions on top # don't change lemmy-ui or lemmy here, they refer to the upstream definitions on top
set $proxpass "http://lemmy-ui"; set $proxpass "http://lemmy-ui";
if ($http_accept = "application/activity+json") { if ($http_accept ~ "^application/.*$") {
set $proxpass "http://lemmy";
}
if ($http_accept = "application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"") {
set $proxpass "http://lemmy"; set $proxpass "http://lemmy";
} }
if ($request_method = POST) { if ($request_method = POST) {