Jump to content

christ777

Members
  • Posts

    2
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

christ777's Achievements

Noob

Noob (1/14)

0

Reputation

  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; } }
×
×
  • Create New...