You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a blog from scratch, using my gravatar email [email protected], the app incorrectly generates the following JSON Linking Data object for all posts:
As you can see, because the Gravatar protocol was left out and the "same protocol as requested resource" shorthand // was used, whatever generates this link appended it to the blog url instead of replacing it.
FWIW I'm serving Ghost on its default port, localhost, with Apache listening on 443 proxying to it. The config.js defines the URL as http://blog.justinbull.ca because making it https causes an infinite loop.
The text was updated successfully, but these errors were encountered:
f3ndot
changed the title
JSON Linking Data incorrectly generates Author's Gravatar URL
JSON Linking Data incorrectly generates author's Gravatar URL
Nov 16, 2014
Ah thank you, my search terms were for "https" and "linking data" so I missed it.
For those who were wondering about that infinite redirect loop, I forgot to include RequestHeader set X-Forwarded-Proto "https" directive in my apache proxy config
version MSR1: 0.5.3
When creating a blog from scratch, using my gravatar email
[email protected]
, the app incorrectly generates the following JSON Linking Data object for all posts:As you can see, because the Gravatar protocol was left out and the "same protocol as requested resource" shorthand
//
was used, whatever generates this link appended it to the blog url instead of replacing it.FWIW I'm serving Ghost on its default port, localhost, with Apache listening on 443 proxying to it. The
config.js
defines the URL ashttp://blog.justinbull.ca
because making ithttps
causes an infinite loop.The text was updated successfully, but these errors were encountered: