Hi Santiago,
I receive regular updates from the Google Scholar team on DSpace indexing. I tend to talk with them a few times a year & receive updates about any common issues they've found with indexing DSpace sites. They have never mentioned that the date format in "citation_publication_date" is an issue. If they ever do, we'd treat it as a bug and get it fixed.
However, I can verify that the "citation_publication_date" field simply uses the same date as your "dc.date.issued" metadata field on the Item. So, if you modify the "dc.date.issued" that will change the value in your "citation_publication_date" meta tag. But, I do not believe that is necessary for Google Scholar to index your site.
Similarly, I've not heard of any issues with "citation_abstract_html_url" being the handle. This field takes its value from the "dc.identifier.uri" metadata field on your Item. So, if the Item has a different value in that field, it will be used in the "citation_abstract_html_url".
Tim
Also, `citation_date` is not formatted as required by Google. This is a problem?
I don't know if we have to follow the format "obligatorily":
Provide full dates in the "2010/5/12" format if available; or a year alone otherwise.
And the last question: it is okay for the
citation_abstract_html_url to be a handle URL (
handle.net), isn't it?
I really don't know why we are not indexed by Google.
Sorry to bother you with all these questions.
Regards,
Santiago.
On Wednesday, July 26, 2023 at 8:51:57 AM UTC+2 Santiago Lo Coco wrote:
I fixed the problem by adding this line:
proxy_set_header Host $host;
Regards,
Santiago.
On Wednesday, July 26, 2023 at 8:34:30 AM UTC+2 Santiago Lo Coco wrote:
Thank you Tim.
The problem is that I already done that.
This is my nginx config for the frontend:
location / {
proxy_set_header X-Forwarded-Proto https;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://localhost:4000; }
Do you know if there is a mistake?
I also add some `add_header` directives for debugging and they are working perfectly.
This is the output of `curl -v`:
Regards,
Santiago.