[GH-ISSUE #110] Shiori doesn't show embed images in articles #78

Closed
opened 2026-02-25 23:33:24 +03:00 by kerem · 2 comments
Owner

Originally created by @jostyee on GitHub (Aug 8, 2018).
Original GitHub issue: https://github.com/go-shiori/shiori/issues/110

For example: https://www.nytimes.com/2018/01/21/technology/inside-amazon-go-a-store-of-the-future.html has some images, which showing only Image placeholders in Shiori.

I've place my Shiori instance behind a Nginx:

server {
  listen 443 ssl http2;
  listen [::]:443 ssl http2;
  server_name shiori.foo.bar;
  location / {
    access_log /var/log/nginx/shiori_access.log;
    error_log /var/log/nginx/shiori_error.log;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-Proto https;
    proxy_set_header X-Forwarded-Ssl on;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_pass http://localhost:8080;
    #proxy_redirect http://localhost:8080/ $scheme://$host;
  }
}

Is there any misconfiguration in my conf?

Originally created by @jostyee on GitHub (Aug 8, 2018). Original GitHub issue: https://github.com/go-shiori/shiori/issues/110 For example: https://www.nytimes.com/2018/01/21/technology/inside-amazon-go-a-store-of-the-future.html has some images, which showing only `Image` placeholders in Shiori. I've place my Shiori instance behind a Nginx: ``` server { listen 443 ssl http2; listen [::]:443 ssl http2; server_name shiori.foo.bar; location / { access_log /var/log/nginx/shiori_access.log; error_log /var/log/nginx/shiori_error.log; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-Proto https; proxy_set_header X-Forwarded-Ssl on; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_pass http://localhost:8080; #proxy_redirect http://localhost:8080/ $scheme://$host; } } ``` Is there any misconfiguration in my conf?
kerem closed this issue 2026-02-25 23:33:24 +03:00
Author
Owner

@saesh commented on GitHub (Sep 16, 2018):

Hey @jostyee. This most likely has nothing to do with your nginx configuration but with the way articles are converted to text format. The article you linked loads images dynamically when you scroll to them, this is probably not working with readability (the article to text converter).

Is this issue resolved for you now and can be closed?

<!-- gh-comment-id:421726816 --> @saesh commented on GitHub (Sep 16, 2018): Hey @jostyee. This most likely has nothing to do with your nginx configuration but with the way articles are converted to text format. The article you linked loads images dynamically when you scroll to them, this is probably not working with readability (the article to text converter). Is this issue resolved for you now and can be closed?
Author
Owner

@jostyee commented on GitHub (Sep 16, 2018):

sure.

<!-- gh-comment-id:421740927 --> @jostyee commented on GitHub (Sep 16, 2018): sure.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/shiori#78
No description provided.