stefer

Members
  • Posts

    39
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

Recent Profile Visitors

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

stefer's Achievements

Noob

Noob (1/14)

1

Reputation

  1. Oh ok thanks, it is odd that the live demo site looks nothing like the docker and not the same solutions... is it really a live demo of the docker image? https://reactle.vercel.app/
  2. This is neat, but I'm not getting the same results as your live demo. Besides the "WORDLE" logo at the top, my running instance looks very similar to the original site... + giving me the same word of the day as the original one... Unlike your live demo. Am I missing something? Are the words configurable so they're not the same as the real original one?
  3. favicon.ico from the github doesn't seem to be pulled with the docker image, I get a 404 error when I try to load it. (ddns-updater)
  4. EDIT : it works, see bottom edit In ddns-updater , is there a way to force ipv4 only? I use namecheap, i provided my provider, domain, host ( "*" ) and my password in the json file, it connects to namecheap, but says malformed ip... I added the IPV6_PREFIX variable with the /64 value and still no go (I use Rogers, a quick google pointed out they use /64) EDIT : ok looking at the docker's log, I see that it finds my IP fine... it's the any.mydomain.com that it doesn't like... i replaced with @ and that works... Will add my subdomains now.
  5. MP3 and FLAC but I use the feature where it moves the file to another folder once they are tagged.
  6. Hi. I have an issue with the files that are sorted out by SongKong. They are now owned by root and not the user nobody. Is there a way to fix that? I can change ownership with tools or command line... but it'd be nice if the moved files get the right access from the get go. Thanks!
  7. Nope, gave up and only used my Raspberry Pi instead.
  8. unraid-diagnostics-20180603-1438.zip I was in the middle of a parity check (was almost done) and all of a sudden my server rebooted. I heard the fans spin down, then the bios beep, and it booted all by itself. Had a power failure yesterday... (I KNOW, i'm saving up for a decent UPS) Fix common problems tells me that I have some hardware error and to install the nerdpack plugin with mce. Thing is, when i run mce, it tells me my amd processor is incompatible, to use the edac amd pack instead but that is not listed in the files that nerdpack can install... Any tip on what else I can test/try? Diagnostics attached. Thanks!
  9. I can't seem to passthrough my camera. lsusb gives me this : Bus 002 Device 003: ID 045e:075d Microsoft Corp. LifeCam Cinema I passthrough a device pointing to : /dev/bus/usb/002/003 And the container doesn't recognize the camera. (no cameras found) And in /dev there's no device with ttyusb# either...
  10. Well replaced and all is well. Didn't replace the cable but unplugged it and replugged it again to be safe.
  11. Thanks Johnnie! Well, since I bought a 10tb to replace that 2tb and I need the space, I will definitely replace it, and probably won't use it after, because I agree, it's not very healthy... I'm hoping its not a dead sata port... my 10tb is almost done pre-clearing so once that's done I'll replace it AND the cable to be safe.
  12. I've had a drive x'ed out for a few days, had a replacement sent overnight and it's pre-clearing right now. But I just noticed that the sde device which I would think is faulty, is seen in unassigned devices as sdj... Now does that mean that the drive is usable but for some reason the sdx is mixed up and unraid can't find it? Should I mount it and try the scan again, or with the correct flag? Any idea? It did have 2 unrecoverable sectors in the smart status for a while and was meaning to replace it ASAP. I had an unclean shutdown last week where the whole server stopped responding and would not respond to SSH. Web interface was only responding to clicking the tabs but nothing else, I could not initiate a reboot and/or array stop. After a force reboot it did a parity check and never noticed that the autocorrect was on in the scheduler... It did correct some. The drive stopped working a couple of days after the parity check ended. parity-checks.log
  13. I had that before! Kinda, from an example I found : server { listen 80; server_name _; return 301 https://$host$request_uri; } I removed the server_name directive in that and removed the one I put for my library server directive and it works, thanks! Now if I can get my tt-rss redirect to work i'll be golden!
  14. Hi, I'm getting a 404 error when trying to reverse proxy this with nginx. Here's my location block : location /ttrss/ { proxy_pass http://192.168.1.69:7845; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } Any ideas? My other location blocks for other dockers work fine. Edit : This is in my letsencrypt nginx config. Should I move that to the ttrss nginx config?