Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

bobokun

Members
  • Joined

  • Last visited

Everything posted by bobokun

  1. I'm having this issue as well. Where is the location of gpustatus.page file? Thanks
  2. I spent some time trying to get it to work with nginx however haven't had any luck. I posted a discussion on github hopefully someone that's more knowledgeable in docker can help me figure out what I did wrong.
  3. Can confirm it's fixed now! thank you
  4. 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.
  5. 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.
  6. 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?
  7. Fyi your recent changelog has a date year of 2020 instead of 2021
  8. 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
  9. 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
  10. 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.
  11. 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?
  12. 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
  13. Anyone have issues upgrading ombi to v4? After upgrading it gets stuck on the loading page
  14. 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?
  15. Did you ever figure out how to upgrade to LTS? Looking to do the same and I'm having the same issue as you.
  16. Thank you! I did exactly as you recommended and it worked perfectly. Now I don't have a limit on the image size anymore.
  17. 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?
  18. 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.
  19. Yes, thanks! Restarting the container worked. Thanks for following up
  20. 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
  21. Anyone else here use the OnlyOffice Document Server container and see it growing everyday? If it's not growing for you can you please post the config you used? Mine keeps growing larger everyday.
  22. Is anyone elses container size this large for OnlyOffice?
  23. comment out the line 38 with #
  24. Did you have you change anything in your appdata\nginx\site-confs\default or was it just from appdata\nextcloud\site-confs\default? I tried to follow the config as well and this is what I tried changing it to but it doesn't seem to be working. Can you see if I did anything wrong? Old Config: location / { rewrite ^/remote/(.*) /remote.php last; rewrite ^(/core/doc/[^\/]+/)$ $1/index.html; try_files $uri $uri/ =404; } location ~ \.php(?:$|/) { fastcgi_split_path_info ^(.+\.php)(/.+)$; include /etc/nginx/fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param HTTPS on; fastcgi_param modHeadersAvailable true; #Avoid sending the security headers twice fastcgi_pass php-handler; fastcgi_intercept_errors on; } New Config: location / { rewrite ^ /index.php; } location ~ ^\/(?:index|remote|public|cron|core\/ajax\/update|status|ocs\/v[12]|updater\/.+|oc[ms]-provider\/.+)\.php(?:$|\/) { fastcgi_split_path_info ^(.+?\.php)(\/.*|)$; try_files $fastcgi_script_name =404; include /etc/nginx/fastcgi_params; fastcgi_param SCRIPTFILENAME $document_root$fastcgi_script_name; fastcgi_param PATHINFO $fastcgi_path_info; fastcgi_param HTTPS on; # Avoid sending the security headers twice fastcgi_param modHeadersAvailable true; # Enable pretty urls fastcgi_param front_controller_active true; fastcgi_pass php-handler; fastcgi_intercept_errors on; fastcgi_request_buffering off; }
  25. I hope this it the right thread to ask but I've been trying to create a script to change the throttle speeds of my upload. Does anyone have any experience with this? Right now after some investigating the only way I managed to get this to work is to change the lines for download_rate and upload_rate in rtorrent.rc and restarting the docker container. The end goal is when people are streaming remotely on my plex server I want it to dynamically adjust the upload rate in my rutorrent and adjust it back when nobody is streaming on my plex server. I've tried to follow this guide to adjust it through the throttle.php plugin but it doesn't seem to change in the WebUI. https://www.seedhost.eu/whmcs/knowledgebase/245/rTorrentorruTorrent-limit-uploadordownload-speed.html

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.