Everything posted by akamemmnon
-
Problems with Ryzen 5900
I have been running Unraid for 8 years now with an intel Core-i7, I recently got a ASUS ROG Strip B550 motherboard and Ryzen 5900X and the server keeps having these lockups/errors and then stops working. I searched and found a bunch of issues with this, so I went into the BIOS and disabled c-states and downclocked the RAM DDR4 to 3200 (its 3600). I also read that ASUS motherboards have more problems, should I get another one? has anyone successfully set up an unraid server with this combination?
-
[Support] binhex - DelugeVPN
I've been having a problem with my docker.img filling up, when I checked the container size, I noticed that my deluge container seems really large. I'm not sure why, I checked the download folders and mappings are to a share. the log file isnt big either. any ideas? Thanks
-
Docker Network Issue's?
I ended up changing some network settings in unraid (had IPV4, 6 addresses, and DNS server assignment be automatic) and I haven't had the problem again. not sure if this is the solution, but thats all I got.
-
[Support] Poste.io Free version
If you use a reverse proxy, which ports do you have to open up?
-
WireGuard quickstart
I use swag to route all the traffic to my dockers, but wanted to set up wireguard using a subdomain, is there a way to not have that route through swag? if I put my home IP address it works fine. or can you use swag to point it to the right place?
-
[Plugin] Nvidia-Driver
does any one know what happened to the linuxserver unraid Nvidia plugin? its not available anymore
-
[Support] A75G Repo
worked like a charm. thanks
-
[Support] A75G Repo
Hi, I have been running the Riot IM docker for some time and it is great. Now that you created a Element IM docker thats separate, is it possible for us to migrate what we have to that?
-
[Support] ich777 - Application Dockers
Hi, did you ever get this working? I am also using the nextcloud as per SpaceInvader video set up. Did you install it on the proxynet?
-
Docker Network Issue's?
im having the same problem, any one figure this out?
-
Network Connection Keeps Disconnecting
Ok so it happened again, the only way I notice this happens is because things like nextcloud and home assistant which I have accessible outside of my network are no longer accessible, but when I am on the local network and I navigate to the IP of my unraid server, its still running fine. But, when I look at my Google Wifi router (which I have used without this problem for years) I notice the device is grayed out and "not connected." when I restart the unraid server, it all works again until the next time... here are the diagnostics, any help would be greatly appreciated tower-diagnostics-20200913-1632.zip
-
Network Connection Keeps Disconnecting
I have been having this same problem recently. I'm not sure what prompted it. I haven't made any hardware changes. I rebooted, I guess the next time this happens I will pull the diagnostics on my system too.
-
[Support] Linuxserver.io - OpenVPN AS
Hi, I set this up also using that guide. the problem is that when im using bridge mode it works, but when I use a custom proxynet (which letsencrypt is working on) it wont work. so if I want to keep the letsencrypt docker on the proxynet, but have it still work with the open-vpn docker (on bridge mode) I think we have to make some changes to the .conf file that you guys provide. what are those changes? I think this is the problem everyone is having. my ports on my router are open so when open-vpn is on the proxynet it is accessible through my domain, but when its on bridge mode, its not (get Nginx error)
-
[Support] Linuxserver.io - OpenVPN AS
did you ever figure this out? having the same problem
-
[Support] Linuxserver.io - OpenVPN AS
did you ever figure this out? I'm having the exact same problem now
-
Zoom Sucks: Riot Chat + Jitsi Video Conference Setup
server { listen 443 ssl; listen 8448 ssl; server_name your.domain; 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 matrix; set $upstream_port 8008; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_set_header X-Forwarded-For $remote_addr; } location /.well-known/matrix/server { default_type application/json; return 200 '{"m.server": "your.domain:443"}'; add_header Access-Control-Allow-Origin *; } }
-
Zoom Sucks: Riot Chat + Jitsi Video Conference Setup
so I was getting federation according to the tester, but it wouldn't communicate with those severs. after talking to the support people and reading other webpages, I found out that my .conf file in letsencrypt needed this line: location /.well-known/matrix/server { default_type application/json; return 200 '{"m.server": "yourdomain.com:443"}'; add_header Access-Control-Allow-Origin *; maybe it will help someone else. thanks for the reply!
-
Zoom Sucks: Riot Chat + Jitsi Video Conference Setup
did you ever figure this out?
-
Zoom Sucks: Riot Chat + Jitsi Video Conference Setup
Hi everyone, I followed this awesome guide and so far have matrix and Riot working well on my own server. My problem is that it doesnt connect to matrix.org to see other servers. From what I read this means I dont have federation. Are there steps I am supposed to take to allow that?