kostecki

Members
  • Posts

    22
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

kostecki's Achievements

Noob

Noob (1/14)

3

Reputation

  1. You're close. As i'm using env-variables and not the server.yml you need to also use the env-variable version as listed in the table at the bottom of: https://docs.ntfy.sh/config/ But i already exposed that variable, so in the container config in unRaid you can just change NTFY_WEB_ROOT to disabled
  2. Summary: Support thread for all (there's one) of my Docker Templates for CA. This thread is purely for supporting the templates themselves. I have absolutely nothing to do with the actual development of anything. Ntfy Web: https://ntfy.sh/ Description: ntfy (pronounce: notify) is a simple HTTP-based pub-sub notification service. It allows you to send notifications to your phone or desktop via scripts from any computer, entirely without signup, cost or setup.
  3. You're absolutely right - of course you are. I had to jump through a million hoops, but i have it installed and it works perfectly at bridging Dropbox and Nextcloud. Thanks for proving me wrong!
  4. That absolutely fair, and i understand but seeing as it requires me to download from source, build the plugin and enable it using the OCC i'm guessing it's as good as useless, unless i want to jump through all of these hoops everything the container is updated, right?
  5. Just shamelessly quoting myself in hope of an answer
  6. I've been using the container for a days now, and it seems to work perfectly. Thanks for hard work! I really want to add Dropbox synchronization to Nextcloud, but after Dropbox deprecated OAuth1 in favor of OAuth2 it requires a different app: https://github.com/icewind1991/files_external_dropbox is it possible to add it to the container in some way?
  7. Has anyone been able to put ruTorrent behind a reverse proxy (with nginx)? I'm almost able to get it to work as far as getting the ruTorrent UI to show up at mydomain.tld/rutorrent, but the log tab just shows: [11.08.2017 19:43:45] WebUI started. [11.08.2017 19:43:45] Bad response from server: (404 [error,getplugins]) Not Found The developer console in Chrome shows a 404 for the following file, a file that is present if i use 192.168.0.5:9080/php/getplugins.php: mydomain.tld/rutorrent/php/getplugins.php My nginx config files looks like this: location /rutorrent { rewrite ^/rtorrent$ /rtorrent/ redirect; proxy_pass http://192.168.0.5:9080/; proxy_set_header Host 192.168.0.5:9080; proxy_redirect default; } Anyone who can tell me how i can fix this?
  8. Has anyone gotten this to work? I would really like to use Flood with Sonarr and Radarr
  9. I've been trying to get this to work with reverse proxy on my nginx installation, but no luck so far. It's set up like this: location /rutorrent { include /config/nginx/include/proxy-control.conf; proxy_pass http://192.168.0.5:9080; proxy_redirect default; } proxy-control.conf contains: client_max_body_size 10m; client_body_buffer_size 128k; #Timeout if the real server is dead proxy_next_upstream error timeout invalid_header http_500 http_502 http_503; # Advanced Proxy Config send_timeout 5m; proxy_read_timeout 240; proxy_send_timeout 240; proxy_connect_timeout 240; # Basic Proxy Config proxy_set_header Host $host:$server_port; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto https; proxy_redirect http:// $scheme://; proxy_http_version 1.1; proxy_set_header Connection ""; proxy_cache_bypass $cookie_session; proxy_no_cache $cookie_session; proxy_buffers 32 4k; When i visit mydomain.tld/rutorrent i get the nginx auth prompt but then it just throws a 404. Any ideas on what i'm doing wrong? I have reverse proxy working fine with CP, Sonarr, Plexpy, Trasmission and unRaid itself. Edit: i can see in the docket log that it outputs the following error: 2016/10/11 01:11:23 [error] 687#687: *1 "/usr/share/webapps/rutorrent/rutorrent/index.html" is not found (2: No such file or directory) with the second rutorrent being my reverse proxy location (mydomain.tld/rutorrent) which is obviously breaking functionality since it's looking for ruTorrent in the wrong pace. How is this solved?
  10. And once again you give great advise. Thank you, CHBMB!
  11. I can't see how it's possible to change the base url, but this is a workaround RewriteRule ^/muxi$ /muxi/ [R] <Location /muxi> ProxyPass http://UNRAID-IP:MUXIMUX-PORT/ ProxyPassReverse http://UNRAID-IP:MUXIMUX-PORT/ </Location> For reference here's the other bits of my setup.... RewriteEngine On ProxyPreserveHost Off Awesome. That worked absolutely perfect. Is there any way to password protect this with something like htaccess? I have a public webserver running via my Aapache Docker container and, as such, aren't interested in protecting my whole public facing web server.
  12. I'm trying to use this with a reverse proxy in Apache on /muxi. I am, however, having problems with a lot of files not being loaded because it's looking for them at the root on my site. Isn't it possible to set the base url?
  13. That seems like a fair guess. Hopefully it'll be fixed at some point, but i can live with kinda-working. Thanks to both of you, mr-hexen and CHBMB!