Jump to content

nginx missing icons with latest emby server


sscheib

Recommended Posts

sscheib

Hello,

today I updated emby to version 3.2.1.0 and noticed the icons in the admin interface are missing.

Is this due to a misconfigured nginx (which worked before the update of emby) or is this a bug of emby?

If it's an nginx issue, could somebody please post their working nginx reverse proxy config?

 

Thank you!

 

My nginx reverse proxy configuration file:

server {
        server_name my.domain;
        listen 80;

        rewrite ^ https://my.domain$request_uri? permanent;
}

server {
        server_name my.domain;
        listen 443 ssl spdy;

        ssl_certificate                 /etc/letsencrypt/live/my.domain/cert.pem;
        ssl_certificate_key             /etc/letsencrypt/live/my.domain/privkey.pem;
        ssl_prefer_server_ciphers       On;
        ssl_protocols                   TLSv1 TLSv1.1 TLSv1.2;
        ssl_ciphers                     'AES256+EECDH:AES256+EDH:!aNULL';
        ssl_stapling                    on;
        resolver                        8.8.8.8 8.8.4.4 valid=300s;
        resolver_timeout                5s;
        ssl_stapling_verify             on;
        keepalive_timeout               180;

        # This is for strict transport security HSTS
        # add_header                    Strict-Transport-Security max-age=31536000;

        client_max_body_size 1024M;

        location / {
                # Send traffic to the backend
                proxy_pass http://127.0.0.1:8096;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-for $proxy_add_x_forwarded_for;
                proxy_set_header Host $host;
                proxy_set_header X-Forwarded-Proto $remote_addr;
                proxy_set_header X-Forwarded-Protocol $scheme;
                proxy_redirect off;

                # Send websocket data to the backend aswell
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection "upgrade";
        }
}
Link to comment
Share on other sites

thatoneguy99

I do not use a proxy and I don't have them either. I don't think it is an error/problem. I think it was done on purpose by the devs.

 

 

Sent from my phone!

Link to comment
Share on other sites

pir8radio

how about a screen shot of what you are seeing...   I doubt its nginx.  what about when you directly connect to the server skipping over nginx?

Link to comment
Share on other sites

pir8radio

huh, I see icons in beta version.   Running through nginx as well.    Do you see any 404's or other errors when using chrome and the "Inspect/network" view?  

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...