Ricardo Maranhao

Members
  • Posts

    39
  • Joined

  • Last visited

Converted

  • Gender
    Male

Recent Profile Visitors

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

Ricardo Maranhao's Achievements

Noob

Noob (1/14)

2

Reputation

  1. Hi, i did some coding and in my personal machine i don't have docker, and don't want to install it. How can i run these code in docker in my unraid server? I only see how to add containers that are in the CA. I can't upload it there, since is a private code.
  2. Hi guys, i'm using the PrivateVPN, always worked with the wireguard in unraid. But after i had a new unraid server, i download the wireguard.conf, import into VPN settings, change the qbitorrrent network to the WG0, but when i access it shows error. When i change back to meu main custom network it works. Any ideias what that can be? IN MY CUSTOM NETWORK IN THE WG0 NETWORK:
  3. Sorry for the noob question. Where is the hosts file? How can i edit it? 🙂
  4. Just did, deleted the old, made a new one with key in CloudFlare, deleted in NPM, upload the new one. Keeps getting the error. After putting the new SSL, i restart NPM, this is the log:
  5. Hi guys, i'm here again. 😅 My unraid server had a power loss. After i boot, everythin is working fine. All dockers are ok, all the networks are ok, VMS ok. But the remote acess is not working due to a SSL handshake error. But i didn't changed anything, it only went offline. This is my emby server. Docker is ok: NPM is ok, like always, didn't touched anything there. What after a power loss, could cause this? Thanks in advanced
  6. SOLVED! Thanks a lot @mgutt!! You are the choosen one!! [root@docker-0edc1cf543b4:/app]# curl qbittorrent curl: (7) Failed to connect to qbittorrent port 80: Connection refused [root@docker-0edc1cf543b4:/app]# curl qbittorrent:8081 curl: (7) Failed to connect to qbittorrent port 8081: Connection refused [root@docker-0edc1cf543b4:/app]# curl qbittorrent:8080 <!doctype html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"><meta name="mobile-web-app-capable" content="yes"><meta name="viewport" content="width=device-width,initial-scale=1"><!--[if IE]><link rel="icon" href="./favicon.ico?s=1"><![endif]--><title>qBittorrent</title><meta name="description" content="The sleekest looking WEBUI for qBittorrent made with Vuejs!"><meta property="og:image" content="./icons/android-chrome-maskable-512x512.png?s=22"><meta property="og:description" content="torrent universal server for remote download."><meta property="og:title" content="WELCOME :: VUE TORRENT"><script defer="defer" type="module" src="js/chunk-vendors.4d7ded41.js"></script><script defer="defer" type="module" src="js/app.370c936b.js"></script><link href="css/chunk-vendors.e1b5c20a.css" rel="stylesheet"><link href="css/app.d515b361.css" rel="stylesheet"><link rel="icon" type="image/svg+xml" href="img/icons/favicon.svg"><link rel="icon" type="image/png" sizes="32x32" href="./icons/favicon-32x32.png?s=22"><link rel="icon" type="image/png" sizes="16x16" href="./icons/favicon-16x16.png?s=22"><link rel="manifest" href="manifest.json"><meta name="theme-color" content="#597566"><meta name="apple-mobile-web-app-capable" content="no"><meta name="apple-mobile-web-app-status-bar-style" content="default"><meta name="apple-mobile-web-app-title" content="VueTorrent"><link rel="apple-touch-icon" href="./icons/apple-touch-icon.png?s=22"><link rel="mask-icon" href="./icons/safari-pinned-tab.svg?s=22" color="#597566"><meta name="msapplication-TileImage" content="img/icons/msapplication-icon-144x144.png"><meta name="msapplication-TileColor" content="#000000"><script defer="defer" src="js/chunk-vendors-legacy.39ed746a.js" nomodule></script><script defer="defer" src="js/app-legacy.36917abe.js" nomodule></script></head><body><noscript><strong>We're sorry but VueTorrent doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html>[root@docker-0edc1cf543b4:/app]# To sumarize for person in the future with that problem: CASE OF USE: Use a container inside a WIREGUARD VPN TUNNEL IN DOCKER WITH A CUSTOM WG NETWORK thats is diferent from your NPM netowrk. 1. Connect the NPM docker to the custom wg network as a second network: docker network connect wg0 Nginx-Proxy-Manager-Official 2. See the network is connected: docker network inspect <network_name> for example: docker network inspect wg0 3. See if the docker container from NPM is connected, and the other container is there: [ { "Name": "wg0", "Id": "fd1589ad816d6df8920bba867b7e5369b988abe4e845430abf81613739098e9f", "Created": "2022-06-17T07:39:30.659947081-03:00", "Scope": "local", "Driver": "bridge", "EnableIPv6": false, "IPAM": { "Driver": "default", "Options": {}, "Config": [ { "Subnet": "172.31.200.0/24" } ] }, "Internal": false, "Attachable": false, "Ingress": false, "ConfigFrom": { "Network": "" }, "ConfigOnly": false, "Containers": { "0edc1cf543b477594e7a4b1f83b3eb6a06d9f78c467b8289ec1fe86825bd22b4": { "Name": "Nginx-Proxy-Manager-Official", "EndpointID": "8cbef963f8f24e72bcadedd8b05b1e60b6aa4978e7a3060278afb41b8c1219cb", "MacAddress": "", "IPv4Address": "172.31.200.4/24", "IPv6Address": "" }, "e530259583366654dd0b33404dba652acd15fda16ee213e9750244eff8c1f358": { "Name": "qbittorrent", "EndpointID": "e0020699fe027f83dfbf20ab96f09fc1f87b20d2b3d17f532fa608391fc5de2d", "MacAddress": ", "IPv4Address": "172.31.200.2/24", "IPv6Address": "" } }, "Options": {}, "Labels": {} } ] 4. DON'T try to connect using the hostname and external port: [root@docker-0edc1cf543b4:/app]# curl qbittorrent:8081 curl: (7) Failed to connect to qbittorrent port 8081: Connection refused 5. If you going to use the hostname, USE THE INTERNAL DOCKER PORT: [root@docker-0edc1cf543b4:/app]# curl qbittorrent:8080 <!doctype html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"><meta name="mobile-web-app-capable" content="yes"><meta name="viewport" content="width=device-width,initial-scale=1"><!--[if IE]><link rel="icon" href="./favicon.ico?s=1"><![endif]--><title>qBittorrent</title><meta name="description" content="The sleekest looking WEBUI for qBittorrent made with Vuejs!"><meta property="og:image" content="./icons/android-chrome-maskable-512x512.png?s=22"><meta property="og:description" content="torrent universal server for remote download."><meta property="og:title" content="WELCOME :: VUE TORRENT"><script defer="defer" type="module" src="js/chunk-vendors.4d7ded41.js"></script><script defer="defer" type="module" src="js/app.370c936b.js"></script><link href="css/chunk-vendors.e1b5c20a.css" rel="stylesheet"><link href="css/app.d515b361.css" rel="stylesheet"><link rel="icon" type="image/svg+xml" href="img/icons/favicon.svg"><link rel="icon" type="image/png" sizes="32x32" href="./icons/favicon-32x32.png?s=22"><link rel="icon" type="image/png" sizes="16x16" href="./icons/favicon-16x16.png?s=22"><link rel="manifest" href="manifest.json"><meta name="theme-color" content="#597566"><meta name="apple-mobile-web-app-capable" content="no"><meta name="apple-mobile-web-app-status-bar-style" content="default"><meta name="apple-mobile-web-app-title" content="VueTorrent"><link rel="apple-touch-icon" href="./icons/apple-touch-icon.png?s=22"><link rel="mask-icon" href="./icons/safari-pinned-tab.svg?s=22" color="#597566"><meta name="msapplication-TileImage" content="img/icons/msapplication-icon-144x144.png"><meta name="msapplication-TileColor" content="#000000"><script defer="defer" src="js/chunk-vendors-legacy.39ed746a.js" nomodule></script><script defer="defer" src="js/app-legacy.36917abe.js" nomodule></script></head><body><noscript><strong>We're sorry but VueTorrent doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html> 6. You can use the external ip WITH the external port: [root@docker-0edc1cf543b4:/app]# curl 192.168.1.30:8081 <!doctype html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"><meta name="mobile-web-app-capable" content="yes"><meta name="viewport" content="width=device-width,initial-scale=1"><!--[if IE]><link rel="icon" href="./favicon.ico?s=1"><![endif]--><title>qBittorrent</title><meta name="description" content="The sleekest looking WEBUI for qBittorrent made with Vuejs!"><meta property="og:image" content="./icons/android-chrome-maskable-512x512.png?s=22"><meta property="og:description" content="torrent universal server for remote download."><meta property="og:title" content="WELCOME :: VUE TORRENT"><script defer="defer" type="module" src="js/chunk-vendors.4d7ded41.js"></script><script defer="defer" type="module" src="js/app.370c936b.js"></script><link href="css/chunk-vendors.e1b5c20a.css" rel="stylesheet"><link href="css/app.d515b361.css" rel="stylesheet"><link rel="icon" type="image/svg+xml" href="img/icons/favicon.svg"><link rel="icon" type="image/png" sizes="32x32" href="./icons/favicon-32x32.png?s=22"><link rel="icon" type="image/png" sizes="16x16" href="./icons/favicon-16x16.png?s=22"><link rel="manifest" href="manifest.json"><meta name="theme-color" content="#597566"><meta name="apple-mobile-web-app-capable" content="no"><meta name="apple-mobile-web-app-status-bar-style" content="default"><meta name="apple-mobile-web-app-title" content="VueTorrent"><link rel="apple-touch-icon" href="./icons/apple-touch-icon.png?s=22"><link rel="mask-icon" href="./icons/safari-pinned-tab.svg?s=22" color="#597566"><meta name="msapplication-TileImage" content="img/icons/msapplication-icon-144x144.png"><meta name="msapplication-TileColor" content="#000000"><script defer="defer" src="js/chunk-vendors-legacy.39ed746a.js" nomodule></script><script defer="defer" src="js/app-legacy.36917abe.js" nomodule></script></head><body><noscript><strong>We're sorry but VueTorrent doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html> Hope these help someone! Thanks again for @mgutt!
  7. It keeps getting the error: Error 502 Bad gateway When i acess via my domain using cloudflare. The others contaneirs that are in the same network as main works perfect. But the qbittorrent container that is the in the wg0 keets me getting error 502. I added the NPM into the same wg0 network as a second network, it is listed there but nothing changed. Here is what show me when i ping the qbittorrent container from NPM: # su _ _ _ ____ __ __ | \ | | __ _(_)_ __ __ _| _ \ _ __ _____ ___ _| \/ | __ _ _ __ __ _ __ _ ___ _ __ | \| |/ _` | | '_ \\ \/ / |_) | '__/ _ \ \/ / | | | |\/| |/ _` | '_ \ / _` |/ _` |/ _ \ '__| | |\ | (_| | | | | |> <| __/| | | (_) > <| |_| | | | | (_| | | | | (_| | (_| | __/ | |_| \_|\__, |_|_| |_/_/\_\_| |_| \___/_/\_\\__, |_| |_|\__,_|_| |_|\__,_|\__, |\___|_| |___/ |___/ |___/ Version 2.9.18 (cce73be) 2022-03-31 05:46:34 UTC, OpenResty 1.19.9.1, debian 10 (buster), Certbot certbot 1.25.0 Base: debian:buster-slim, linux/amd64 Certbot: nginxproxymanager/nginx-full:latest, linux/amd64 Node: nginxproxymanager/nginx-full:certbot, linux/amd64 [root@docker-0edc1cf543b4:/app]# curl -sSL -D - http://192.168.1.30:8081 -o /dev/null HTTP/1.1 200 OK cache-control: no-store connection: keep-alive content-length: 2136 content-type: text/html date: Sun, 19 Jun 2022 11:09:35 GMT x-content-type-options: nosniff x-xss-protection: 1; mode=block
  8. I added NPM to wg0 as a second network but it didn't worked, the log: root@Matrix:~# docker network inspect wg0 [ { "Name": "wg0", "Id": "fd1589ad816d6df8920bba867b7e5369b988abe4e845430abf81613739098e9f", "Created": "2022-06-17T07:39:30.659947081-03:00", "Scope": "local", "Driver": "bridge", "EnableIPv6": false, "IPAM": { "Driver": "default", "Options": {}, "Config": [ { "Subnet": "172.31.200.0/24" } ] }, "Internal": false, "Attachable": false, "Ingress": false, "ConfigFrom": { "Network": "" }, "ConfigOnly": false, "Containers": { "07361606c2cb4742581aeabcdc22ae9a30853201e5fe8fbadbb0c5bc869f32d7": { "Name": "Firefox", "EndpointID": "1c743ba9593a2fdb5e805a5acc22db69c3e2683cedeae906199396a22cf64114", "MacAddress": "", "IPv4Address": "172.31.200.3/24", "IPv6Address": "" }, "0edc1cf543b477594e7a4b1f83b3eb6a06d9f78c467b8289ec1fe86825bd22b4": { "Name": "Nginx-Proxy-Manager-Official", "EndpointID": "8cbef963f8f24e72bcadedd8b05b1e60b6aa4978e7a3060278afb41b8c1219cb", "MacAddress": "", "IPv4Address": "172.31.200.4/24", "IPv6Address": "" }, "e530259583366654dd0b33404dba652acd15fda16ee213e9750244eff8c1f358": { "Name": "qbittorrent", "EndpointID": "e0020699fe027f83dfbf20ab96f09fc1f87b20d2b3d17f532fa608391fc5de2d", "MacAddress": ", "IPv4Address": "172.31.200.2/24", "IPv6Address": "" } }, "Options": {}, "Labels": {} } ]
  9. My NPM can't connect with the qbitorrent. NPM is in a custom docker netwok (infamous). The qbitorrent is in a wireguard docker network (wg0). So when i try to acess my domain (cloudflare + npm) the qbitorrent doesn't acess. The error is: Error 502 Bad gateway All the other contaneir that are in the same network can acess. Is there anything i can do? I need the torrent in the wg0 network, to use my PrivateVPN account with the wireguard killswitch if the vpn goes down. It's a lot safer to download.
  10. Hello my friends again, I started to use the VPN MANAGER feature in UNRAID 6.10. Set to VPN tunneled access for docker, and created the wg0 network. Than i set ONLY the qbittorrent docker to use that network so all my downloads would be done thru my VPN (privateVPN). But without touching in anything other than that, my CLOUDFLARE started giving me ERROR 525 (handshake error). So i can't connect to radarr, sonarr, emby via my domain. But the QBITTORRENT that is set under the new wg0 network is the one that i can acess, with limitations (the login form don't submit). Any ideias?
  11. Easiest thing is to download the zip for the 6.9.2 release from the Unraid download page and then extract all the bz* type files overwriting the ones on the flash. Copy the changes.txt as well
  12. Do you run frigate inside home assistant in a VM?
  13. Maybe can i do like docker and set a folder inside a VM to a share in the array?