logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: b4064dfe30b792f5d6d36b72c7cd530afb1c667a
parent: 38ee0f3fc64e625d940ae807beab8161390e4fe4
Author: lambda <pleromagit@rogerbraun.net>
Date:   Mon, 21 May 2018 21:20:41 +0000

Merge branch 'feature/clarify-http-sig-error' into 'develop'

clarify HTTP signature error in logs

See merge request pleroma/pleroma!165

Diffstat:

Mlib/pleroma/web/activity_pub/activity_pub_controller.ex2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/pleroma/web/activity_pub/activity_pub_controller.ex b/lib/pleroma/web/activity_pub/activity_pub_controller.ex @@ -93,7 +93,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubController do Logger.info("Signature not from author, relayed message, fetching from source") ActivityPub.fetch_object_from_id(params["object"]["id"]) else - Logger.info("Signature error") + Logger.info("Signature error - make sure you are forwarding the HTTP Host header!") Logger.info("Could not validate #{params["actor"]}") Logger.info(inspect(conn.req_headers)) end