August 10, 201411 yr 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.
August 10, 201411 yr 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.
August 10, 201411 yr 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
August 11, 201411 yr 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:
August 14, 201411 yr 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.
August 14, 201411 yr 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?
October 9, 201411 yr @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.
October 9, 201411 yr 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?
October 15, 201411 yr 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.
October 15, 201411 yr 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.
October 15, 201411 yr I get Unable to Connect when trying to access the page. Can someone post a sample config.js?
October 16, 201411 yr 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?
October 22, 201411 yr Author Having trouble getting a .htpasswd file generated. Any tips? http://www.htaccesstools.com/htpasswd-generator/ ?
October 29, 201411 yr How would I go about getting a fork of Maraschino that has Plex connectivity in a docker container?
October 29, 201411 yr Author How would I go about getting a fork of Maraschino that has Plex connectivity in a docker container? Hey Reluctantflux.. I did the hard work for you, just choose the variable when you install it. Info here: https://registry.hub.docker.com/u/smdion/docker-maraschino/ - Same docker as in the Docker Page on your unRAID
November 15, 201411 yr 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>
November 15, 201411 yr 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.
November 15, 201411 yr 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
November 15, 201411 yr 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",
November 15, 201411 yr What do you have in the config.js for UpStatsBoard "webRoot": "/status", It was blank, but I tried "/status" and now get Cannot GET /
November 15, 201411 yr 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?
November 15, 201411 yr 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.