smdion's Docker Template Repository - Directions and Help Here


Recommended Posts

I don't have it turned on either. It's just that with the newest Plex, they are forcing SSL connections now if possible. They also have added auth-tokens for 3rd party programs (like Couchpotato) to do notifications, etc. They have also made it a requirement for entry of a 4 digit pin, even when on a local network. So I imagine it has to be something like that. I know the newest Plex versions will not allow  Couchpotato to update Plex, without the Auth Token in their settings. No one else has noticed any of this?

 

In all honesty I don't really use Plex much..

 

I'm on version 0.9.12.11

 

Couch doesn't connect I've just noticed..

 

And I have to enter a 4 digit number

Link to comment
  • Replies 507
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted Images

I don't either I only use it for remote watching. But when I saw HTPC manager, as a possible alternative to nzb360 I jumped on it. I just wanted to know if anyone else had my same issue.

 

I also tried to use htpc manager and it seems like a great product but i could never get plex to connect. I tried PlexPY and that is the first piece of software that connects to plex and i can see my data. However it yet to figure out why it doesn't report the statistics.

 

 

Link to comment

Would it be possible to use this fork of HTPC Manager with Sonarr Support https://github.com/Hellowlol/HTPC-Manager with your docker?

 

EDIT: Didn't see it already had it. Thanks :D

 

Does the Plex connection in HTPC manager work? It doesn't seem to with the latest Plex. Is there a place for an auth token somewhere I'm missing?

 

My fork works great with plex, it does not support ssl connections to plex, if your using that you need to set ssl settings to preferred in plex. If you have plex home actived, you need to enter your username and password.

 

You can view your media, the search filter current tab. So say you want all all movies released in 2014 or later you can do year>=2014, or simply 16 blocks. You can also start playback on a client, scan for movies etc

 

Please make a issue on on github if you have problems

Link to comment
  • 3 weeks later...

Hi everyone,

 

I have been trying for a month to get owncloud working under reverseproxy with SSL and just cannot seem to get it right. I have been reading and trying different config variations without any luck.

 

I have followed the tutorials for setting up a domain, generating key files, etc.

 

Here is the reverse proxy config that I am using:

<VirtualHost *:443>

        ServerName 123.abc.net

        ServerAlias abc.net

        ServerAdmin webmaster@localhost

        DocumentRoot /var/www

 

ErrorLog ${APACHE_LOG_DIR}/error.log

CustomLog ${APACHE_LOG_DIR}/access.log combined

 

        SSLEngine On

        SSLProtocol All -SSLv2 -SSLv3

        SSLCipherSuite AES128+EECDH:AES128+EDH

        #SSLProtocol all -SSLv2#

        #SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM#

        SSLCertificateFile /config/ssl.crt

        SSLCertificateKeyFile /config/decrypted.ssl.key

        SSLCertificateChainFile /config/sub.class1.server.ca.pem

 

        SSLProxyEngine on

SSLProxyVerify none

SSLProxyCheckPeerCN off

SSLProxyCheckPeerName off

SSLProxyCheckPeerExpire off

    ProxyRequests off

 

 

        <Location /owncloud>

                ProxyPass http://1.1.0.1:8000/owncloud

                ProxyPassReverse http://1.1.0.1:8000/owncloud

        </Location>

 

        <Location /couchpotato>

                ProxyPass http://1.1.0.1:5050/couchpotato

                ProxyPassReverse http://1.1.0.1:5050/couchpotato

                AuthUserFile /config/.htpasswd

                AuthType Basic

                AuthName "CouchPotato - LDL"

                Require user admin

        </Location>

 

        <Location /sage>

                ProxyPass http://1.1.0.1:8080/sage

                ProxyPassReverse http://1.1.0.1:8080/sage

        </Location>

</VirtualHost>

 

<VirtualHost *:80>

        ServerName 123.abc.net

        ServerAlias abc.net

        ServerAdmin webmaster@localhost

        DocumentRoot /var/www

 

ErrorLog ${APACHE_LOG_DIR}/error.log

CustomLog ${APACHE_LOG_DIR}/access.log combined

 

##Redirect All To https - Uncomment below lines if necessary##

<Location />

Order deny,allow

Deny from all

</Location>

RewriteEngine On

RewriteRule ^/?(.*) https://abc.net/$1 [R=301,L]

 

        <Location /rss>

                ProxyPass http://domain.info/rss

                ProxyPassReverse http://domain.info/rss

        </Location>

</VirtualHost>

 

Here is the owncloud config that I have:

<?php

$CONFIG = array (

  'instanceid' => 'instance',

  'passwordsalt' => 'password',

  'secret' => 'secret',

  'trusted_domains' =>

  array (

    0 => 'abc.net',

    1 => '1.1.0.1:8000',

  ),

  'datadirectory' => '/var/www/owncloud/data',

  'overwritewebroot'  => '/owncloud',

  'overwrite.cli.url' => 'https://abc.net/owncloud',

  'overwritehost'    => 'abc.net',

  'overwriteprotocol' => 'https',

  'dbtype' => 'sqlite3',

  'version' => '8.1.1.3',

  'logtimezone' => 'UTC',

  'installed' => true,

);

 

In my router I have the following:

port 80 forwarded to 1.1.0.1 port 80

port 443 forwarded to 1.1.0.1 port 443

 

Any help would be greatly appreciated. Thanks.

 

Also, can anyone direct me on how to get rid of the certificate error in the web browser. Thanks.

Link to comment
  • 2 weeks later...

I'm just testing out Beets to see if it can fix my music... I get the docker installed, mapped the volumes, and it starts just fine. When I run "Docker exec Beets beet import /path/to/music/to/be/imported it just .... hangs. Is that what this is supposed to do?

Link to comment
  • 1 month later...
Guest
This topic is now closed to further replies.