smdion's Docker Template Repository - Directions and Help Here


Recommended Posts

Do they have a mod for nzbget in place of sab?  I tend to see better transfer speeds on my local nzbget than sab (at least on my unraid box, my seedbox's sab gets 40M/s plus, I just hate syncing down from there, so I use the local that gets me about 8m or so).

 

A mod for what?  I know needo has an nzbget docker.

Link to comment
  • Replies 507
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted Images

Will Maraschino work with nzbget, or just sab?  That's what I was asking, if it'll work with nzbget.  Kind of like the fork for plex.

 

I have added the other 2 GIT repositories.  One has just a Plex module and the other has a NZBDrone and a Plex module. 

 

You should be able to add this into the extended docker plugin. Just click on the "+" in the upper right and choose Maraschonio and add NZBDRONE or PLEX as the Variable Name (needs to be all caps), than a 1 as the Variable Value.  Or if you already have created it, just click on the name and add it.

 

Install commands for the terminal are in the docker readme

Link to comment
  • 1 month later...

I cannot figure out how to set up the config file for upsboards. I need some help. I installed the docker, and attempted to edit the config file, but the server is not running (or I'm not accessing it properly).

 

I really need someone to ELI5, please.

 

The config is REALLY picky, can't have any extra spaces, needs ";" in the right places.  Accessible at 0.0.0.0:8024 with correctly working config. I would recommend turing on the debug in "running mode", than you can look at the logs thru the docker page.

Link to comment
  • 3 weeks later...

I'm having some issues getting Upstatsboard running behind the reverse proxy properly.  I had Upstatsboard running as a docker for a long time with no issues, so I know my basic config is good.

 

When I put it behind the reverse proxy so I can access it via https://mydomain.com/status it sort of works, but all of the formatting and graphics look like they're getting stripped out.

 

For the most part, I'm using a stripped down version of the example config of reverse-proxy that was posted at the top of the thread and I haven't touched my Upstatsboard config.  The ssl config seems to be fine too, I don't get any complaints from Chrome about the certificates or anything.

 

proxy-config.conf:

<VirtualHost *:443>
        ServerName www.mydomain.com
        ServerAlias mydomain.com
        ServerAdmin webmaster@localhost
        DocumentRoot /var/www

        SSLEngine on
        SSLProtocol all -SSLv2
        SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM
        SSLCertificateFile /config/ssl.crt
        SSLCertificateKeyFile /config/ssl.key
        SSLCertificateChainFile /config/server.pem

        <Location /status>
                ProxyPass http://192.168.1.7:8024
                ProxyPassReverse http://192.168.1.7:8024
                AuthUserFile /config/.htpasswd
                AuthType Basic
                AuthName "UpStatsBoard - Proxy"
                Require valid-user
        </Location>

</VirtualHost>

Capture.JPG.5b2dd5f05bc096d7485b42423b543844.JPG

Link to comment

I'm having some issues getting Upstatsboard running behind the reverse proxy properly.  I had Upstatsboard running as a docker for a long time with no issues, so I know my basic config is good.

 

When I put it behind the reverse proxy so I can access it via https://mydomain.com/status it sort of works, but all of the formatting and graphics look like they're getting stripped out.

 

For the most part, I'm using a stripped down version of the example config of reverse-proxy that was posted at the top of the thread and I haven't touched my Upstatsboard config.  The ssl config seems to be fine too, I don't get any complaints from Chrome about the certificates or anything.

 

proxy-config.conf:

<VirtualHost *:443>
        ServerName www.mydomain.com
        ServerAlias mydomain.com
        ServerAdmin webmaster@localhost
        DocumentRoot /var/www

        SSLEngine on
        SSLProtocol all -SSLv2
        SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM
        SSLCertificateFile /config/ssl.crt
        SSLCertificateKeyFile /config/ssl.key
        SSLCertificateChainFile /config/server.pem

        <Location /status>
                ProxyPass http://192.168.1.7:8024
                ProxyPassReverse http://192.168.1.7:8024
                AuthUserFile /config/.htpasswd
                AuthType Basic
                AuthName "UpStatsBoard - Proxy"
                Require valid-user
        </Location>

</VirtualHost>

 

Try

 

                ProxyPass http://192.168.1.7:8024/status
                ProxyPassReverse http://192.168.1.7:8024/status

 

instead of

 

                ProxyPass http://192.168.1.7:8024
                ProxyPassReverse http://192.168.1.7:8024

 

in the proxy config.

Link to comment

Try

 

                ProxyPass http://192.168.1.7:8024/status
                ProxyPassReverse http://192.168.1.7:8024/status

 

instead of

 

                ProxyPass http://192.168.1.7:8024
                ProxyPassReverse http://192.168.1.7:8024

 

in the proxy config.

 

No luck.  Then I get

 

Cannot GET /status

Link to comment

Try

 

                ProxyPass http://192.168.1.7:8024/status
                ProxyPassReverse http://192.168.1.7:8024/status

 

instead of

 

                ProxyPass http://192.168.1.7:8024
                ProxyPassReverse http://192.168.1.7:8024

 

in the proxy config.

 

No luck.  Then I get

 

Cannot GET /status

 

What do you have in the config.js for UpStatsBoard

 

	"webRoot": 				"/status",

Link to comment

What do you have in the config.js for UpStatsBoard

 

	"webRoot": 				"/status",

 

It was blank, but I tried "/status" and now get

Cannot GET /

 

:-\

 

ok.

 

If

	"webRoot": 				"/status",

is config.js

 

than proxy-config needs to be

 

                ProxyPass http://192.168.1.7:8024/status
                ProxyPassReverse http://192.168.1.7:8024/status

 

If

	"webRoot": 				"/",

is config.js

 

than proxy-config needs to be

 

                ProxyPass http://192.168.1.7:8024/
                ProxyPassReverse http://192.168.1.7:8024/

 

 

Maybe put it back the way you had it and try a good ol clear cache/cookies?

 

Link to comment
Guest
This topic is now closed to further replies.