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.

xavierh

Members
  • Joined

  • Last visited

Everything posted by xavierh

  1. Looks like you need to click those 2 overlaying squares next to the snapshot to get a menu that will allow you to commit, not very user-friendly
  2. Support thread for the lissy93/networking-toolbox app. GitHubGitHub - Lissy93/networking-toolbox: 🛜 100+ offline-firs...🛜 100+ offline-first networking tools and utilities - Lissy93/networking-toolbox100+ offline-first networking tools and utilities networkingtoolbox.net
  3. Restarting rc.nfsd restart fixed my issue. I tried via the Web UI but that didn't work enabling/disabling.
  4. I forgot this, from server 2 Jul 19 12:16:09 server2 unassigned.devices: Warning: shell_exec(/sbin/mount -t 'nfs' -o rw,soft,relatime,retrans=4,timeo=300 'server1:/mnt/user/AudioBooks' '/mnt/remotes/server1_AudioBooks' 2>&1) took longer than 15s! Jul 19 12:16:09 server2 unassigned.devices: NFS mount failed: 'command timed out'. Jul 19 12:16:09 server2 unassigned.devices: Remote Share 'server1:/mnt/user/AudioBooks' failed to mount. Jul 19 12:16:16 server2 unassigned.devices: Warning: shell_exec(/sbin/mount -t 'nfs' -o ro,soft,relatime,retrans=4,timeo=300 'server1:/mnt/user/Movies' '/mnt/remotes/server1_Movies' 2>&1) took longer than 15s! Jul 19 12:16:16 server2 unassigned.devices: NFS mount failed: 'command timed out'. Jul 19 12:16:16 server2 unassigned.devices: Remote Share 'server1:/mnt/user/Movies' failed to mount.
  5. By the way, server 2 was/is on 6.12.11. I lost power a few days ago. While parity was running, NFS shares were working.
  6. So, I'm not sure if I'm having the same issue. I upgraded from 6.12.10 to 6.12.11, and since I had to reboot, I said well, let me add a few disks to the array. I did not clear them beforehand. I didn't mind the wait, and they were used previously, so the drives are good. * There is a drive with a smart error but its not being used at all. NFS was working between 2 unraid servers perfectly. After bringing up the array, server 1, Unraid is disk-clearing the drives. I've lost access to the NFS shares from my other server (server 2). I'm using Unassigned Devices to mount the shares. Everything looks good from both servers. When I search for NFS Shares from server 2, I don't see any shares available from server 1. Samba shares from server 1 are visible. I created an NFS share on server 2, and I can see it on server 1, and it is mountable. I guess I'll wait 12 hours for the clean to complete and see if it fixes itself. frankie-diagnostics-20240719-1213.zip
  7. I've never used swag before. I would think it should be possible. Can you open an issue in github? Maybe an example of a log would help as well.
  8. I don't even see my app in the apps store anymore. Not sure why. I would assume though you have a problem with the internal SSL and it causing an error via proxying.
  9. Sorry for the delay... Not sure if your doing reverse proxy but if your using something like NGINX Proxy Manager you need to enable Websockets support.
  10. Trying to figure if there an API native to Unraid. I noticed an API for HomeAssistant. When I googled I found results for it should be included in 6.8. I did google some more and couldn't find more info. A "no" is fine. Just asking. Thanks.
  11. This is a clone of Infinite Mario, written in JavaScript for web browsers using HTML5
  12. I don't see anywhere on there where the logs are stored. You might need to navigate the /mnt/user/appdata folder to find the logs then use that path.
  13. I don't see jlesage NginxProxyManager has an app in Unraid so I assume you set it up manually. Can you send a screenshot of the settings for the container?
  14. If you click on the troubleshooting documentation link it'll explain it a bit. Basically you need HTTPS set up. However, you can click on the Advanced options link and you can get around but just make sure you don't have 2 tabs open at the same time.
  15. This "app" is created off the official docker image. The other one is like 7 months old; I noticed when I tried using a feature that wasn't available in that version.
  16. It should be part of the template, you can add the path yourself. I think its advised not to pre-populate that.
  17. Support thread for unraid docker template. This docker image was already created by the developer. I've just created the unraid template for it using jlongster/actual-server:latest. GitHub: https://github.com/actualbudget/actual DockerHub: https://hub.docker.com/r/jlongster/actual-server My Repository: https://github.com/xavier-hernandez/unraid-templates
  18. Support thread for unraid docker template. This docker image wass already created by the developer. I've just created the unraid template for it. GitHub: https://github.com/kaythomas0/noisedash DockerHub: https://hub.docker.com/r/noisedash/noisedash My Repository: https://github.com/xavier-hernandez/unraid-templates
  19. The current app created by the developer does not allow this. You'd have to modify their code.
  20. Which piece of the app do you want into German language?
  21. You want to play in German? If so, this app is in english. There are others in German online if you visit here https://github.com/cwackerfuss/react-wordle . Looks like there is a repo here, https://github.com/diondiondion/woertchen . If you want I can try to create an Unraid app for it or you can create one yourself.
  22. No, apprise is already integrated into my docker image. Those commands that you add to your docker compose file, if your using that, gets passed into apprise within my docker image.
  23. @safiedin visit https://github.com/caronc/apprise for more information on the notifications and setups. For discord you need to first create a webhook on the discord side then add that to the docker compose file. From the link above you can get more information on the discord notification https://github.com/caronc/apprise/wiki/Notify_discord and how to set that up. For example. - NOTIFICATION_TYPE=APPRISE - APPRISE_TITLE=SomethingHere - APPRISE_1=discord://webhook_id/webhook_token Email would be similar to above. https://github.com/caronc/apprise#email-notifications - NOTIFICATION_TYPE=APPRISE - APPRISE_TITLE=SomethingHere - APPRISE_1=mailto://mySendingUsername:[email protected][email protected] You can also merge those two and it should work. - NOTIFICATION_TYPE=APPRISE - APPRISE_TITLE=SomethingHere - APPRISE_1=discord://webhook_id/webhook_token - APPRISE_2=mailto://mySendingUsername:[email protected][email protected]
  24. I saw you opened a github issue. I'm going to close that and reference it here. I think this is a better place to learn since there are additional people that can help since you might have Unraid questions as well. Which notification are you trying to use, the default one is PushOver?
  25. The goaccess-for-nginxproxymanager container doesn't do anything to NPM logs or rotates them in anyway. It just reads what's available, what you provide it.

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.