Jump to content

H2O_King89

Members
  • Posts

    337
  • Joined

  • Last visited

Posts posted by H2O_King89

  1. My clients can no longer play files - Fire TV, Android TV and Nexus 6P. They connect to the server, but I get the error message even on my local network:
     
    "playback has stopped because the connection to the Plex Media Server has been host. Please ensure the server is available and retry"
     
    Anyone else having this problem?  The only change I can think of my end is I switched to assigning an IP address for the docker.  I'm currently trying to switch back to see if that helps, but it's taking an eternity to restart

    I’m going to assume external clients? If so did you update the router port ?


    Sent from my iPhone using Tapatalk
  2. I mean it's up to you, but why the hell would you want something like Unifi which interfaces directly with your firewall accessible from WAN?

    As you can tell I'm a big fan of keeping any network management stuff like router, firewall, access points very much inaccessible from WAN.

    Sent from my LG-H815 using Tapatalk



    It's really an OCD thing. I was trying to get rid of the self a signed Certs so that error goes away when you first sign in.

    I do have their cloud system enabled two axis from the wan side.

    Was trying to do something like this


    But I do see your point


    Sent from my iPhone using Tapatalk
  3. On 6/19/2017 at 3:40 PM, poldim said:

     

     

    I discovered that my problem was appending the URL with the final destination.  IE:

    
    proxy_pass https://192.168.2.100:32400/web/index.html;

    does not work, but removing  "/web/index.html" makes it happy:

    
    proxy_pass https://192.168.2.100:8443;

     

     

    I've now got access to both my unifi and plex interface on my phone while on 4G.  BUT, I'm still unable to connect while connected to the WIFI in the house.  

     

    Are there some kind of additional settings in nginx to allow it to route the connection between VLANs?  My wifi is on a separate VLAN but I have no issues hitting the direct IP of the interfaces.  When trying to access the subdomain.domain.com I get the following error:  ERR_EMPTY_RESPONSE or ERR_CONNECTION_TIMED_OUT

     

    how did you get unifi to pass? i've tried with no luck? same with plexpy

     

    upstream backend {
    	server 10.1.40.6:19999;
    	keepalive 64;
    }
    
    server {
    	listen 443 ssl default_server;
    	listen 80 default_server;
    	root /config/www;
    	index index.html index.htm index.php;
    
    	server_name _;
    
    	ssl_certificate /config/keys/letsencrypt/fullchain.pem;
    	ssl_certificate_key /config/keys/letsencrypt/privkey.pem;
    	ssl_dhparam /config/nginx/dhparams.pem;
    	ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA';
    	ssl_prefer_server_ciphers on;
    
    	client_max_body_size 0;
    
    	location = / {
    		return 301 /plex;
    	}
    
    	location /sonarr {
    		include /config/nginx/proxy.conf;
    		proxy_pass http://10.1.40.6:8989/sonarr;
    	}
    	
    	location /unifi {
    		include /config/nginx/proxy.conf;
    		proxy_pass http://10.1.40.6:8443;
    	}
    
    	location /sabnzb {
    		include /config/nginx/proxy.conf;
    		proxy_pass http://10.1.40.6:8082/sabnzb;
    	}
    
    	
    	location /downloads {
    		include /config/nginx/proxy.conf;
    		proxy_pass  http://10.1.40.6:8112/;
    		proxy_set_header  X-Deluge-Base "/downloads/";
    	}
    	
    	#PLEX
    	location /web {
    		# serve the CSS code
    		proxy_pass http://10.1.40.6:32400;
    	}
    
    	# Main /plex rewrite
    	location /plex {
    		# proxy request to plex server
    		proxy_pass http://10.1.40.6:32400/web;
    	}
    
    	location /plexpy {
    		include /config/nginx/proxy.conf;
    		proxy_pass https://10.1.40.6:8181;
    	}
    	
    	location ~ /netdata/(?<ndpath>.*) {
    		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://backend/$ndpath$is_args$args;
    		proxy_http_version 1.1;
    		proxy_pass_request_headers on;
    		proxy_set_header Connection "keep-alive";
    		proxy_store off;
    	}
    }

     

  4. Please share what you did to get it working so far.

    And post a diagnostics file.

     

    IIRC there is a similar issue with the Areca controllers in JBOD mode.

    It looks like the cards BIOS is interfering in the passthrough.

    You can check what settings are available in the cards BIOS.

    Make sure the drives are simply passed through.

    I'll have to look into how to get you the diagnostic file. I've never done it before. 

     

    It started working right when I re-seated the card and plug drives into it.

     

    I think it is passing through right.  Disk cleaner is reading the drives like they should.  I read some where about putting them back in the right order. And do a new config will fix them.  I just wanted to make sure this is right so I don't lose anything. 

     

     

  5. I have a LSI 9300-8i on the way. Will this work out of the box or do I need to flash it

     

    That depends on how the card is sold. In any case, it should have IT firmware flashed for unRAID.

    You might also want to skip flashing the BIOS for faster boot times.

    Next open point is driver support in unRAID itself, but you should see pretty soon how things go.

    Keep us updated please!

     

    Got the card. It said IT at the of the FW Version.

     

    With the card in with no drives hook up UNRAID boots but I can't Connect to the web GUI 

  6. So I just made a mistake... I am new to teamspeak and spent 5 hours give or take setting up...  I seen the docker had an update and deleted everything I had setup.

     

    My question is, what is the proper way to update the docker and is there a way to back settings up?

×
×
  • Create New...