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.

christ777

Members
  • Joined

  • Last visited

  1. I had the same issues, the container was not able to find the device ( a RTL-SDR USB radio for reading 433mhz devices in Home Assistant) when using the device parameter. However, adding the --device=$(readlink -f /dev/symlinkname) to the Extra Arguments were very unreliable. Sometimes the container could access the USB through the symlink and most of the times it could not. I changed to the -e option and it worked flawlessly: --device=$(readlink -e /dev/rtlsdr) # Change "rtlsdr" to your symlink name I also noticed the user scripts function "At first Array start only" was not working reliably either. Instead I added it to the /boot/config/go file: #Add udev rules cp /boot/config/rules.d/99-usb-rules.rules /etc/udev/rules.d/99-usb-rules.rules chmod 744 /etc/udev/rules.d/99-usb-rules.rules udevadm trigger --attr-match=subsystem=usb This is what I put into the /boot/config/rules.d/99-usb-rules.rules file. The name of this file is not important just that the filename begins with a large number, in this case 99, because the udev rules gets executed in order. So depending on what udev rules you have on your system you can name it 99-yourname.rules. SUBSYSTEM=="usb", ATTRS{idVendor}=="0bda", ATTRS{idProduct}=="2838", MODE="0666", SYMLINK+="rtlsdr" # Change "rtlsdr" to your preferred symlink name Now it survive reboots, it is working reliably every time and I do not have to unplug/replug it to get it to recognize the device.
  2. Thanks! What an awesome application, perfect for running on an unraid machine. I used this config file for setting up the reverse proxy with Swag server { listen 443 ssl; listen [::]:443 ssl; server_name onetime.*; #change onetime.* if you use other subdomain than the standard one you. include /config/nginx/ssl.conf; client_max_body_size 0; location / { include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_app OneTimeSecret; set $upstream_port 7143; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; } }

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.