summaryrefslogtreecommitdiff
path: root/installation
diff options
context:
space:
mode:
authorNiklas Poslovski <ni.pos@yandex.com>2018-05-22 16:26:01 +0200
committerlain <lain@soykaf.club>2018-05-23 08:48:28 +0200
commitf0e8194a7129b6885ad74a694157e10e29f20807 (patch)
tree57d2df2e5f893e58ce8ae6fc4cec5e23234bea42 /installation
parent493e1bdf52ec7ed99c5cc703dd61f9ca0897c32a (diff)
downloadpleroma-f0e8194a7129b6885ad74a694157e10e29f20807.tar.gz
pleroma-f0e8194a7129b6885ad74a694157e10e29f20807.zip
Repair some access-control headers required for third-party webclients
Diffstat (limited to 'installation')
-rw-r--r--installation/pleroma.nginx4
1 files changed, 2 insertions, 2 deletions
diff --git a/installation/pleroma.nginx b/installation/pleroma.nginx
index b8abdce22..b6ca30cc9 100644
--- a/installation/pleroma.nginx
+++ b/installation/pleroma.nginx
@@ -52,8 +52,8 @@ server {
# if you do not want remote frontends to be able to access your Pleroma backend
# server, remove these lines.
add_header 'Access-Control-Allow-Origin' '*' always;
- add_header 'Access-Control-Allow-Methods' 'POST, GET, OPTIONS' always;
- add_header 'Access-Control-Allow-Headers' 'Authorization, Content-Type' always;
+ add_header 'Access-Control-Allow-Methods' 'POST, PUT, DELETE, GET, PATCH, OPTIONS' always;
+ add_header 'Access-Control-Allow-Headers' 'Authorization, Content-Type, Idempotency-Key' always;
add_header 'Access-Control-Expose-Headers' 'Link, X-RateLimit-Reset, X-RateLimit-Limit, X-RateLimit-Remaining, X-Request-Id' always;
if ($request_method = OPTIONS) {
return 204;