Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

smdion's Docker Template Repository - Directions and Help Here

Featured Replies

  • Author

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.

  • Replies 507
  • Views 140.6k
  • Created
  • Last Reply

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.

 

  • Author

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

The NZBDrone variable has the plex stuff built in too (it's actually a newer fork than the PLEX only one), here's a SS with some of the Plex stuff on it:

 

 

2014-08-10%2021_12_57-Maraschino.png

Does the upstatsboard docker come with vnstat installed?

  • Author

Does the upstatsboard docker come with vnstat installed?

 

It does, but it only installs vnstat in the docker container, so I found it kind of useless.  It does not install it on unRAID.

Does the upstatsboard docker come with vnstat installed?

 

It does, but it only installs vnstat in the docker container, so I found it kind of useless.  It does not install it on unRAID.

 

What is the path needed to use it for ups board then?

  • 1 month later...

@smidion

 

Any further instruction on reverse-proxy? Created the config, used your example and modified to be what I think matches my setup but can't seem to get it working.

  • Author

@smidion

 

Any further instruction on reverse-proxy? Created the config, used your example and modified to be what I think matches my setup but can't seem to get it working.

 

What are you trying to do specifically?

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.

  • Author

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.

I get Unable to Connect when trying to access the page.

 

Can someone post a sample config.js?

  • Author

I get Unable to Connect when trying to access the page.

 

Can someone post a sample config.js?

 

Have you turned on debug and looked at the logs?

Having trouble getting a .htpasswd file generated. Any tips?

How would I go about getting a fork of Maraschino that has Plex connectivity in a docker container?

Fantastic! I love it!

  • 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

  • Author

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.

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

  • Author

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",

What do you have in the config.js for UpStatsBoard

 

	"webRoot": 				"/status",

 

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

Cannot GET /

 

:-\

  • Author

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?

 

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

 

Nevermind, got it.  When I changed webroot to "/status" I didn't have Proxypass in the proxy-config.conf set up with that.  It's all working now, thanks!

Archived

This topic is now archived and is closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.