kri kri

Members
  • Posts

    247
  • Joined

  • Last visited

Everything posted by kri kri

  1. Not really, the only thing that I think comes close is an indexer "my movies" page where you can import your IMDB wishlist and/or add movies manually. This is what I did before I switched back to CP. I switched away from the indexer process because I wanted to protect myself from any 1 indexer going down. After using the linuxserver.io CP docker, I got it running pretty well. Even though CP is kind of temperamental sometimes, it is running fine for my needs.
  2. Read the docker FAQ. Basically, stop docker, delete docker.img, reintall from CA previous apps
  3. That's what I was missing, did you just create an empty TTV url file then?
  4. I know how to use plexus, my question is how did you get it to interact with the docker.
  5. Could you expand on this a bit more? What do you use for your TTV url file?
  6. Can you explain this a bit more? Cheers.
  7. Having a really strange issue. I am not getting any response from the webUI in sonarr. Things I have done - Reinstalled from CA - Checked for updates manually - Rebooted router Every other docker of mine works fine (nzbget, CP, nzbhydra). I have not messed with appdata because the docker itself seems to be working fine. I just use the local IP of my server, I don't forward the port for sonarr. Logs below. Brought to you by linuxserver.io We do accept donations at: https://www.linuxserver.io/donations ------------------------------------- GID/UID ------------------------------------- User uid: 99 User gid: 100 ------------------------------------- [cont-init.d] 10-adduser: exited 0. [cont-init.d] 30-config: executing... [cont-init.d] 30-config: exited 0. [cont-init.d] done. [services.d] starting services [services.d] done. [info] Bootstrap: Starting Sonarr - /opt/NzbDrone/NzbDrone.exe - Version 2.0.0.4230 [info] AppFolderInfo: Data directory is being overridden to [/config] [info] MigrationLogger: *** Migrating data source=/config/nzbdrone.db;cache size=-10485760;datetimekind=Utc;journal mode=Wal;pooling=True;version=3 *** [info] MigrationLogger: *** Migrating data source=/config/logs.db;cache size=-10485760;datetimekind=Utc;journal mode=Wal;pooling=True;version=3 *** [info] Router: Application mode: Interactive [info] OwinHostController: Listening on the following URLs: [info] OwinHostController: http://*:8989/ [info] NancyBootstrapper: Starting NzbDrone API [info] RssSyncService: Starting RSS Sync [info] DownloadDecisionMaker: Processing 400 releases [info] RssSyncService: RSS Sync Completed. Reports found: 400, Reports grabbed: 0 [info] RssSyncService: Starting RSS Sync [info] DownloadDecisionMaker: Processing 400 releases [info] RssSyncService: RSS Sync Completed. Reports found: 400, Reports grabbed: 0
  8. I just set up both in the last couple of days. Everything seems to be working pretty well so far, but I haven't used headphones in years, and I didn't try out the musicbrainz headphones mirror, I just used my own. I think it works fine, it's not lightning fast but it loads in probably 20 seconds or so if I had to guess.
  9. I had some weird indexer errors this week, I use about 4 indexers. Sonarr would tell me the indexers are unavailable. I rebooted sonarr and checked a couple days later, no errors. Bizarre.
  10. Thanks for the reminder. I use the "Nginx-letsencrypt" docker and I managed to get it to work like this: nginx/site-confs/default upstream backend { # the netdata server server 192.168.2.130:19999; keepalive 64; } server { listen 80; listen 443 ssl http2; # server_name mysecretdomain.com www.mysecretdomain.com; include /config/nginx/proxy.conf; include /config/nginx/auth.conf; ssl_certificate /config/keys/fullchain.pem; ssl_certificate_key /config/keys/privkey.pem; ssl_dhparam /config/nginx/dhparams.pem; ssl_ciphers 'ECDHE-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'; ssl_prefer_server_ciphers on; location / { root /config/www; index index.html index.htm index.php; } # This exposes the unraid GUI, not a good idea ! # location / { # proxy_pass http://192.168.2.130/; # proxy_buffering off; # } location /coach { proxy_pass http://192.168.2.130:5050/coach; } location /sonarr { proxy_pass http://192.168.2.130:8989/sonarr; } 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; } } the URL needs to have a trailing /, I couldn't work that out yet. Hope it works for you. there are also official ngnix, apache, lighttpd and caddy examples https://github.com/firehol/netdata/wiki/Running-behind-nginx https://github.com/firehol/netdata/wiki/Running-behind-apache https://github.com/firehol/netdata/wiki/Running-behind-lighttpd https://github.com/firehol/netdata/wiki/Running-behind-caddy Thanks for this. Did you manually create the proxy.conf and auth.conf files? I am trying to wrap my head around this reverse proxy stuff.
  11. This is how mine is setup - works a treat: /config /mnt/cache/appdata/emby/ /mnt /mnt/user/media/
  12. Would be really cool to have as a docker.
  13. How would I go about installing x2go? I couldn't find a docker in the community addons.