aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkaniini <nenolod@gmail.com>2018-11-11 05:49:49 +0000
committerkaniini <nenolod@gmail.com>2018-11-11 05:49:49 +0000
commit617aff4f0c86de298439f64df43d7e95364530c0 (patch)
treeb3ffa30245e839515c4b7c8b333ac69fa1ce60e2
parent61d173d37c840df4ddba1e328298bc64508880e0 (diff)
parentfd918863aa842fda58c620434e3b1f15d510cb53 (diff)
downloadpleroma-617aff4f0c86de298439f64df43d7e95364530c0.tar.gz
Merge branch 'bugfix/corsplug-config' into 'develop'
properly configure CORSPlug See merge request pleroma/pleroma!440
-rw-r--r--config/config.exs14
-rw-r--r--installation/pleroma.nginx10
2 files changed, 14 insertions, 10 deletions
diff --git a/config/config.exs b/config/config.exs
index a6be69620..e82c490e3 100644
--- a/config/config.exs
+++ b/config/config.exs
@@ -176,6 +176,20 @@ config :pleroma, :suggestions,
limit: 23,
web: "https://vinayaka.distsn.org/?{{host}}+{{user}}"
+config :cors_plug,
+ max_age: 86_400,
+ methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
+ expose: [
+ "Link",
+ "X-RateLimit-Reset",
+ "X-RateLimit-Limit",
+ "X-RateLimit-Remaining",
+ "X-Request-Id",
+ "Idempotency-Key"
+ ],
+ credentials: true,
+ headers: ["Authorization", "Content-Type", "Idempotency-Key"]
+
# Import environment specific config. This must remain at the bottom
# of this file so it overrides the configuration defined above.
import_config "#{Mix.env()}.exs"
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;