# Lightbox not showing up on uploaded images after update

**URL:** https://meta.discourse.org/t/lightbox-not-showing-up-on-uploaded-images-after-update/73009
**Category:** Self-hosting
**Created:** [29.Октябрь.2017 17:25:24 UTC](https://meta.discourse.org/t/lightbox-not-showing-up-on-uploaded-images-after-update/73009 "2017-10-29T17:25:24Z")
**Posts on this page:** 1
**Showing post:** 9

<div class="post-metadata">

### Author: ![ravor-org](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ravor-org/32/120172_2.png) [@ravor-org](https://meta.discourse.org/u/ravor-org)
#### Post date: [27.Март.2018 21:08:32 UTC](https://meta.discourse.org/t/lightbox-not-showing-up-on-uploaded-images-after-update/73009/9 "2018-03-27T21:08:32Z")

</div>

Thanks for the suggestion. Safe-mode did not work out, Lightbox is still not working.

We indeed have a outer nginx-proxy that is forwarding HTTPS-traffic to the nginx located within the discourse-container (also configured for https). Could that be an issue? If yes, what could be the deal?

```
server {
    listen 443 ssl http2;
    server_name ###mydomain####;

    client_header_timeout 5;
    #client_body_timeout 15;
    client_max_body_size 300m;

    include /opt/nginx/conf/ssl.params;

    proxy_http_version 1.1;
    #proxy_connect_timeout 20;
    proxy_read_timeout 360;
    proxy_pass_header Date;
    proxy_pass_header Server;
    proxy_pass_header Authorization;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto https;
    proxy_pass_request_headers on;
    proxy_set_header Accept-Encoding "";
    proxy_buffering off;
    proxy_set_header Connection "Keep-Alive";

    location / {
            proxy_pass https://##internalip###;
            proxy_redirect off;
    }
}

```

---

_[View the full topic](https://meta.discourse.org/t/lightbox-not-showing-up-on-uploaded-images-after-update/73009)._
