Pleroma.Web.ActivityPub.Transmogrifier: fix_url when not a string/empty
[akkoma] / lib / pleroma / web / endpoint.ex
index 7bbb9480deaa920a8654c488b2b250028911e2e7..955bd61f3b59af9c5953f64f182ba9bf15e06532 100644 (file)
@@ -11,7 +11,7 @@ defmodule Pleroma.Web.Endpoint do
   #
   # You should set gzip to true if you are running phoenix.digest
   # when deploying your static files in production.
-  plug(Plug.Static, at: "/media", from: Pleroma.Upload.upload_path(), gzip: false)
+  plug(Plug.Static, at: "/media", from: Pleroma.Uploaders.Local.upload_path(), gzip: false)
 
   plug(
     Plug.Static,
@@ -50,9 +50,10 @@ defmodule Pleroma.Web.Endpoint do
     store: :cookie,
     key: "_pleroma_key",
     signing_salt: "CqaoopA2",
+    http_only: true,
     secure:
       Application.get_env(:pleroma, Pleroma.Web.Endpoint) |> Keyword.get(:secure_cookie_flag),
-    extra: "SameSite=Lax"
+    extra: "SameSite=Strict"
   )
 
   plug(Pleroma.Web.Router)