From fb0be35572b1c7abe850611410fe5ea3b2c7da45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reynir=20Bj=C3=B6rnsson?= Date: Sat, 3 Dec 2022 13:41:24 +0100 Subject: [PATCH] Use 203 Non-Authoritative Information > This response code means the returned metadata is not exactly the same > as is available from the origin server, but is collected from a local > or a third-party copy. This is mostly used for mirrors or backups of > another resource. Except for that specific case, the 200 OK response > is preferred to this status. --- roles/docker/files/configs/mastodon/vhost-mastodon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/docker/files/configs/mastodon/vhost-mastodon b/roles/docker/files/configs/mastodon/vhost-mastodon index bae685b..6e58fac 100644 --- a/roles/docker/files/configs/mastodon/vhost-mastodon +++ b/roles/docker/files/configs/mastodon/vhost-mastodon @@ -1,5 +1,5 @@ listen 3000; client_max_body_size 50M; # default is 1M if ($http_user_agent = "Datadog/Synthetics") { - return 200; + return 203; }