GilbN

Community Developer
  • Posts

    272
  • Joined

  • Last visited

Everything posted by GilbN

  1. There are two. One for linuxserver and one that is the offical Tautulli container. (Based on linuxserver) The support thread link for the official one is a link to discord, so there isn't a support thread on the unraid-forums for it. I'm not sure who has created the unraid template for the official one, but I'm guessing its the CA devs?
  2. Sure its not really hard to work around, but its not really much work to edit the template so it just works "out of the box" either
  3. I think I found an error in the Tautulli template in CA. It uses container path /plex_logs instead of /logs . https://github.com/Tautulli/Tautulli-Docker here they say use /logs.
  4. No need for command line. Just do everything in the unraid GUI. Or do you mean the reverse proxy part?
  5. https://blog.linuxserver.io/2017/05/10/installing-nextcloud-on-unraid-with-letsencrypt-reverse-proxy/
  6. 1. You are proxy_passing http not https. AND you are proxy_passing the letsencrypt container?! you need to proxy_pass the NEXTCLOUD container! proxy_pass https://192.168.1.113:8443; 2: you config.php is wrong it needs to be 'overwrite.cli.url' => 'https://YOURsubdomain.duckdns.org', NOT you localip to nextcloud
  7. I have some guides on https://technicalramblings.com https://technicalramblings.com/blog/how-to-setup-organizr-with-letsencrypt-on-unraid/ It's for Organizr but has lots of sub directory examples. If you want live support I recommend checking out the Organizr discord. https://organizr.us/discord We help people from scratch getting all set up with a domain and reverse proxy everything everyday.
  8. Try location /admin/ instead You can also try with this rewrite (I haven't tried it) if ($http_referer ~* /pihole/) { rewrite ^/admin/(.*) /pihole/admin/$1? redirect; }
  9. Yeah, it's not recommended. But I haven't had any problems doing it with this container.
  10. I just repulled the container and the version is 1.75.
  11. You can upgrade in the container. I've been doing that since 1.4. No issues
  12. The container will create the default file if its missing. So just comment every line in default and add nextcloud.mydomain.com This is how my site-conf folder looks like https://github.com/gilbN/Nostromo/tree/master/Server/nginx/site-confs
  13. Here are my configs for A+ everthing on sslabs and A+ on securityheaders.io https://github.com/gilbN/Nostromo/tree/master/Server/nginx
  14. you have auth_request /auth-admin; in the location blocks. Remove those. That is for server auth using Organizr. And I dont use qbittorrent. So I didnt really test it. If you dont figure it out you could try sub domain. This worked better. server { listen 80; listen 443 ssl http2; server_name qbit.domain.com; location / { proxy_pass http://192.168.1.34:8080; proxy_set_header X-Forwarded-Host $host:$server_port; proxy_hide_header Referer; proxy_hide_header Origin; proxy_set_header Referer ''; proxy_set_header Origin ''; add_header X-Frame-Options "SAMEORIGIN"; } }
  15. Yeah, about which headers to use for the reverse proxies, sometimes different apps need different headers. You can usually find info on the devs wiki page. Or create an issue to ask for help. But most of the time if you include proxy.conf it will work. Take a look here: https://github.com/gilbN/Nostromo/tree/master/Server/nginx/subdirs FYI: For anyone else having the homepage/settings not loading: If you have the php block that comes with the default file in your server block you may experince that Organizr will not load properly. (Homepage is blank and you can’t access settings) This is because the php location is “hijacking” the Organizr container php. You can fix this by commenting the lines like the example below or just remove it. #location ~ \.php$ { #fastcgi_split_path_info ^(.+\.php)(/.+)$; # With php7-cgi alone: #fastcgi_pass 127.0.0.1:9000; # With php7-fpm: #fastcgi_pass unix:/var/run/php7-fpm.sock; #fastcgi_index index.php; #include /etc/nginx/fastcgi_params; #} If you need to use the php location block in a sub directory you can just create a php.conf file and paste the contents into that file. Save it in the nginx folder and use the include syntax. location /logarr { root /config/www; index index.php index.html; include /config/nginx/php.conf; }
  16. Did you add your sub domain in all the places in the /location block? And remove the include line if you don't use organizr.
  17. https://github.com/gilbN/Nostromo/blob/master/Server/nginx/subdirs/qbittorrent.conf
  18. I've made some guides here https://technicalramblings.com/blog/how-to-setup-organizr-with-letsencrypt-on-unraid/ https://technicalramblings.com/blog/allowing-mobile-apps-work-with-services-using-organizr-server-auth/ https://technicalramblings.com/blog/fail2ban-with-organizr-and-let-sencrypt/
  19. Not really that much work. And it's better to have fewer ports open. And you reverse proxy the apps, that way you can load them in an iframe.
  20. @noties I've added what you've posted and the it works but it doesn't seem to actually ban the IP. It logs that the IP is banned but I can still access the site (using LTE on mobile). If I remove the mta/action/iptables-multiport lines it bans like normal. Did you test that access is blocked?