From 307137eda41c34c7e3d6eb1f1ff8e325d21506a5 Mon Sep 17 00:00:00 2001 From: a Date: Wed, 7 Dec 2022 16:23:42 -0600 Subject: [PATCH] Add CORS header to WEB_DOMAIN example (#1083) --- content/en/admin/config.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/en/admin/config.md b/content/en/admin/config.md index 4d21e542..431754d0 100644 --- a/content/en/admin/config.md +++ b/content/en/admin/config.md @@ -29,6 +29,7 @@ To install Mastodon on `mastodon.example.com` in such a way it can serve `@alice ``` location /.well-known/webfinger { + add_header Access-Control-Allow-Origin '*'; return 301 https://mastodon.example.com$request_uri; } ```