Pleroma.Web.ActivityPub.Transmogrifier: fix_url when not a string/empty
[akkoma] / lib / pleroma / web / endpoint.ex
index 1e5ac2721725e23e3fb9874f2e091a8f95a4abf0..955bd61f3b59af9c5953f64f182ba9bf15e06532 100644 (file)
@@ -49,7 +49,11 @@ defmodule Pleroma.Web.Endpoint do
     Plug.Session,
     store: :cookie,
     key: "_pleroma_key",
-    signing_salt: "CqaoopA2"
+    signing_salt: "CqaoopA2",
+    http_only: true,
+    secure:
+      Application.get_env(:pleroma, Pleroma.Web.Endpoint) |> Keyword.get(:secure_cookie_flag),
+    extra: "SameSite=Strict"
   )
 
   plug(Pleroma.Web.Router)