Jump to content

No posters/images


grahamcoyswanst
Go to solution Solved by grahamcoyswanst,

Recommended Posts

grahamcoyswanst
server {
	listen 80;
	listen [::]:80;
	server_name emby.*****.stream;
	# Uncomment to redirect HTTP to HTTPS
	#return 301 https://$server_name$request_uri;
}

server {
	listen 443 ssl http2;
    listen [::]:443 ssl http2;
	server_name emby.****.stream;

	include snippets/cloudflare.conf;

	location /.well-known {
		alias /srv/.well-known;
		allow all;
		default_type "text/plain";
		autoindex    on;
    }

	## SSL SETTINGS
	#ssl_certificate /etc/nginx/ssl/request.letme.stream/request.**.stream-fullchain.pem;
	#ssl_certificate_key /etc/nginx/ssl/request.letme.stream/request.***.stream-privkey.pem;
	#ssl_dhparam /etc/nginx/ssl/dhparam.pem;

	proxy_set_header Referer $http_referer;
	proxy_set_header Host $host;
	proxy_set_header X-Real-IP $remote_addr;
	proxy_set_header X-Real-Port $remote_port;
	proxy_set_header X-Forwarded-Host $host:$remote_port;
	proxy_set_header X-Forwarded-Server $host;
	proxy_set_header X-Forwarded-Port $remote_port;
	proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
	proxy_set_header X-Forwarded-Proto $scheme;
	proxy_set_header X-Forwarded-Ssl on;

	location / {
		proxy_pass http://127.0.0.1:7990;
	}
}

 

emby.jpg

Link to comment
Share on other sites

grahamcoyswanst

im having the above issues with images not loading but works fine on my phone on the same wifi, tested two tvs and both the same but again the mobile phone is fine.

 

Thanks for looking any help please

Link to comment
Share on other sites

  • Solution
grahamcoyswanst

This is solved sorry for some reason as soon as you post for help you end up working it out. 

 

Thanks

  • Thanks 1
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...