diff options
author | William Pitcock <nenolod@dereferenced.org> | 2018-11-11 05:42:30 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2018-11-11 05:42:30 +0000 |
commit | fd918863aa842fda58c620434e3b1f15d510cb53 (patch) | |
tree | b3ffa30245e839515c4b7c8b333ac69fa1ce60e2 | |
parent | 234e471289e7556b0a9f70a01ceefc5814396f9f (diff) | |
download | pleroma-fd918863aa842fda58c620434e3b1f15d510cb53.tar.gz pleroma-fd918863aa842fda58c620434e3b1f15d510cb53.zip |
nginx example config: remove CORS headers, now managed by CORSPlug.
-rw-r--r-- | installation/pleroma.nginx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/installation/pleroma.nginx b/installation/pleroma.nginx index 65a3cdb4c..9b7419497 100644 --- a/installation/pleroma.nginx +++ b/installation/pleroma.nginx @@ -60,16 +60,6 @@ server { client_max_body_size 16m; location / { - # if you do not want remote frontends to be able to access your Pleroma backend - # server, remove these lines. - 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; - } - # stop removing lines here. - add_header X-XSS-Protection "1; mode=block" always; add_header X-Permitted-Cross-Domain-Policies "none" always; add_header X-Frame-Options "DENY" always; |