Everything posted by CHBMB
-
[Support] Linuxserver.io - Ombi
There's a link in my signature. You may need to turn on signatures in your forum preferences.
-
[Support] Linuxserver.io - Ombi
Post your Ombi docker run command and also can you access Ombi on http://192.168.0.3:3579/ombi
-
[Support] Linuxserver.io - Ombi
You missed.... if ($http_referer ~* /ombi/) { rewrite ^/dist/(.*) $scheme://$host/ombi/dist/$1 permanent; }
-
[Support] Linuxserver.io - Ombi
Honestly, that guide is outdated. Our container and config has changed, start with a fresh config and paste what I put into the default file.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
You've put https somewhere where it should be http
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
As far as I know the way to view logs is by clicking the icon on the far right.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
I don't use a custom docker network, because I set mine up before it was in common use. The advantage to it is that our preconfigured configs in the docker container work out the box, as they rely on the docker custom network for container name resolution to enable container to container networking rather than having to put an IP address in like I do. If someone were to get access to a container they would have access to any of the volume mounts within that container irrespective of the type of docker network in use. Which is kind of the whole point of putting stuff behind a Nginx reverse proxy, it gives me personally a lot more confidence in trusting a well developed open source project like Nginx than opening a port and relying on application X, Y or Z and their implementation of security. Sent from my Mi A1 using Tapatalk
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
I love it, I'm in the UK, so paid about £156 shipped from China for it (64GB version) feels premium in the hand, monthly Android updates (last months to Android v8.1) Camera performs pretty well especially after enabling the google camera api. Would definitely recommend it and would definitely consider another Chinese phone.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Same as what I do. Generally I try and use .htpasswd but for some services it just doesn't work well, such as those you've mentioned. Sent from my Mi A1 using Tapatalk
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
You're not asking for support using LimeTech's application, you're asking for support using a volunteer developed free open source docker container. That argument is null and void. Every single one of linuxserver.io is a volunteer and unpaid, as is @gridrunner The fact we use LimeTech's forums is immaterial. Also on the LimeTech front, you purchase the software, their support is a paid option, and quite frankly Unraid is very cheap for what you get. Hell, been using my licence since 2011. You summarise stuff, and I'll make sure it gets to the front page if it's any good.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Give me one good reason why somebody else should wade through 89 pages of information to summarize it, because essentially you can't be bothered. Why don't you contribute back and summarise it for the next person? The mods and experts and anyone else you'd like to delegate this to are all volunteers. Quite frankly we have 101 better things to do with our time than spoon feed you.
-
[Support] Linuxserver.io - Radarr
Well you'd have to import your whole collection back into Radarr, that might take a while.
-
[Support] Linuxserver.io - Radarr
If the delete and reinstall includes deleting your appdata and starting from scratch completely, yeah, I'd imagine that would fix the issue.
-
[Support] Linuxserver.io - TVHeadend
- [Support] Linuxserver.io - Radarr
It's a remnant of that, no idea how to fix it, might be worth asking the Radarr guys.....- Progress UI not working through reverse proxy
Unraid isn't designed to have an outward facing webui, it's not hardened for it and although it's possible (at least with nginx - I played around to see how to do it on a VM) it's very much not recommended. Whilst the advice you have received may not be what you hoped to hear and obviously hasn't been well received, it is pretty sound advice nonetheless. Got no experience with Caddy myself, so can't help you with your query, but I can only echo what others have said, which is that it isn't a great idea. If someone does get access to your Unraid webui they essentially have root access on a server on your LAN. Not a situation you'd want to find yourself in to be honest.- [Support] Linuxserver.io - Nextcloud
Don't worry, I'll ping you @gridrunner- [Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
That to me looks like a docker engine error. Things to try 1. Reboot 2. Delete docker.img and recreate it- [Support] Linuxserver.io - Radarr
What's the path that's not accessible to Radarr?- [Support] Linuxserver.io - Radarr
Post your docker run commands for both containers and screenshots of your sabnzbd and radarr configurations.- [Support] Linuxserver.io - Radarr
Did you use @binhex's version at some point? he uses /media by default.- [Support] Linuxserver.io - TVHeadend
http://$IP-ADDRESS:9981/tvh Still need to specify the port. Sent from my Mi A1 using Tapatalk- [Support] Linuxserver.io - TVHeadend
This forum is for Unraid support, use our Discord if you're not using Unraid.- [Support] Linuxserver.io - Ombi
Try docker exec -it letsencrypt bash ls -la /etc/nginx/ Not that that matters as it's not involved in the Ombi config- [Support] Linuxserver.io - Ombi
@RockDawg server { listen 443 ssl default_server; server_name server.com; root /config/www; index index.html index.htm index.php; include /config/nginx/ssl.conf; client_max_body_size 0; 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; } location / { try_files $uri $uri/ /index.php?$query_string; } location /webfont { try_files $uri $uri/; } location /ombi/ { proxy_pass http://192.168.0.1:3579; proxy_set_header Host $host; proxy_set_header X-Forwarded-Host $server_name; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Ssl on; proxy_set_header X-Forwarded-Proto $scheme; proxy_read_timeout 90; proxy_redirect http://192.168.0.1:3579 https://$host; } } - [Support] Linuxserver.io - Radarr