Jump to content

bobokun

Members
  • Posts

    229
  • Joined

  • Last visited

Everything posted by bobokun

  1. Thanks, I'll try to give it a shot! I am however having some issues with my reverse proxy setup following your first post, when I try to access my reverse proxy it shows up as Bad Request (400). Everything seems to be working when trying to access locally.
  2. Thanks! Seems like I got it up and running just fine Do you know if there's any way to get around the media serving gunicorn/python error? Is it possible to edit the media serving to work with swag container since I already have that running for reverse proxies.
  3. Not sure if you changed something with your templates but as of this morning I started receiving this warning in my Fix Common Problems plugin and as soon as I press apply fix and rescan the error still persists showing that the url should be pointing to authelia. I think you have two templates (Jira service desk and Authelia) both pointing to Authelia docker?
  4. Fyi your recent changelog has a date year of 2020 instead of 2021
  5. Thanks CorneliousJD for creating this docker template! I've been using your openeats container for a long time and didn't realize there was this one that you moved to. Do you run it with the default SQLite database or do you run it with a PostgreSQL container? Since I'm setting this up I want to do it right the first time with the best option even if it requires a bit more work to set up. Is there a quick way to import all the recipes from Openeats into this one? I've accumulated quite a bit of recipes on there so it would be a lot of work to transfer
  6. Someone who has more experience in NGinx might be able to help me out. Currently I have Heimdall and Rutorrent reverse proxied and it's working. However I want to allow Heimdall to call the location in rutorrent /RPC2 but deny access to RPC2 to everything else. Anyone know what I need to change in the rutorrent.subdomain.conf config? I've tried to add heimdall's ip address but it still doesn't seem to be working. location /RPC2 { # enable the next two lines for http auth #auth_basic "Restricted"; #auth_basic_user_file /config/nginx/.htpasswd; # enable the next two lines for ldap auth #auth_request /auth; #error_page 401 =200 /ldaplogin; # enable for Authelia #include /config/nginx/authelia-location.conf; # block rpc access by default because it is unprotected # you can comment out the next line to enable remote rpc calls allow 172.19.0.18; #Allow heimdall deny all; include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_app rutorrent; set $upstream_port 80; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; } It works perfeclty fine if I just uncomment deny all but I want to add another layer of security and only allow Heimdall access to make RPC calls EDIT: I got it working by changing the ip to allow 172.19.0.1; #Allow heimdall
  7. Thank you everyone for all your contributions to this guide and helping me set it up. Everything is working fine on my end, however I'm trying to bypass Authelia when I'm on my local network, however it doesn't seem to be working. my configuration.yml default_policy: deny rules: - domain: "*.domain.com" policy: two_factor - domain: "*.domain.com" policy: bypass networks: - 10.0.0.0/24 When I look at the logs and I'm connected to my LAN to access my domain name it shows up in my logs remote_ip = external_ip_of_domain. Did I misconfigure anything? I'm using swag container for my reverse proxy. I have nat loopback/nat reflection enabled so I think what's happening is that it's returning back my server ip address.
  8. Does anyone know how to set up email notifications from Fail2ban in the case that it does ban an IP address? Is this possible with this container?
  9. it's not, but I was trying to upgrade to the preview and I'm having issues when overwriting my v3 appdata and I just wanted to know if anyone was experiencing something similar
  10. Anyone have issues upgrading ombi to v4? After upgrading it gets stuck on the loading page
  11. I have a syslog server that writes the logs back to the array so I managed to capture the logs before I shut down. syslog-10.0.0.10.log
  12. Recently I've been noticing my Unraid GUI not loading and my docker containers stop working and hanging as well. I can still access ssh but I can't run diagnostics. I also tried to stop the docker service with /etc/rc.d/rc.docker stop and it hangs also. I can't access anything on SMB as well
  13. Anyone know how to get Heimdall working locally without any reverse proxy? I don't want to reverse proxy sonarr, radarr, tautulli just to get heimdell to work. However whenever I click on any of the applications on heimdall it links me to a invalid URL in the format http://UNRAIDIP:HEIMDALPORT/UNRAIDIP:APPPORT For example clicking on tautulli from heimdall brings me to a page http://10.0.0.1:1234/10.0.0.1:8181 where I want it to only open up http://10.0.0.1:8181 to go to tautulli Am I configuring something wrong?
  14. Did you ever figure out how to upgrade to LTS? Looking to do the same and I'm having the same issue as you.
  15. Thank you! I did exactly as you recommended and it worked perfectly. Now I don't have a limit on the image size anymore.
  16. How do you go about changing this? Did you bash into the open eats container and edit the default.conf file in /etc/nginx/conf.d? What text editor did you use to do this since the container doesn't seem to have nano installed.. Also will the changes you make stay once the container gets updated?
  17. Thank you for the detailed write up. I was trying to test this out and everything is working fine but I noticed it was having issues saving when my ingredients/directions had foreign characters (Chinese characters or emojis). I figured out by changing the database collation to utf8mb4_bin it resolved all the issues but it did not change the table collation if it was created previously. My suggestion is to make the default collation utf8mb4_bin when creating the database in MariaDB. This would save others headache in the future! Hope this helps.
  18. Sorry, it's been an early morning and I can't read properly. I've updated my script to the current one. Thank you!
  19. yes @johnnie.black I think you're right. I checked and I do have that scrpit running. However when I ran it again it outputed all 0 btrfs dev stats /mnt/cache [/dev/sdi1].write_io_errs 0 [/dev/sdi1].read_io_errs 0 [/dev/sdi1].flush_io_errs 0 [/dev/sdi1].corruption_errs 0 [/dev/sdi1].generation_errs 0 [/dev/sdh1].write_io_errs 0 [/dev/sdh1].read_io_errs 0 [/dev/sdh1].flush_io_errs 0 [/dev/sdh1].corruption_errs 0 [/dev/sdh1].generation_errs 0 So is this notification safe to ignore? Does that mean it will generate a notification every time the array is stopped? It didn't used to to that before.
  20. I received a notification from Unraid saying I have errors on my cache pool but I can't identify any issues? The notification shows up as: Unraid Status ERRORS on cache pool warning No description I've tried to scrub the cache and it shows up as no errors Rebooting the server makes the notification show up again. See attached for diagnostics unnas-diagnostics-20200430-1746.zip
  21. Yes, thanks! Restarting the container worked. Thanks for following up
  22. I used Dockermod to install python3, however I would like to install some python libraries and want to make sure I'm doing this the best way. Do I create a folder called custom-cont-init.d and inside create a file with the library name? For example 99-pandas and the script would be something like #!/usr/bin/with-contenv bash echo "**** installing pandas****" pip3 install pandas Edit: I find this not working because it tries to run my custom-cont-init.d prior to the dockermods which is throwing me back with an error pip3 command not found
  23. Did you ever resolve this? I'm seeing the same python segfault errors as well.
×
×
  • Create New...