deadnote

Members
  • Posts

    142
  • Joined

  • Last visited

Everything posted by deadnote

  1. Space invader a fait un tuto à ce sujet !
  2. Hello J'ai fait la migration hier, j'ai juste changé le repository comme indiqué dans la doc et pas de soucis. La seule différence c'est que j'utilise cloudflare et donc la validation se fait au niveau du dns et pas en http. Tu as une erreur dans les logs ?
  3. Tu as plusieurs tuto sur youtube pour le reverse proxy. Ceux de spaceinvader sont très simples à suivre et très bien expliqués. https://www.youtube.com/c/SpaceinvaderOne/videos Edit : je viens de voir ta réponse, tu connais déjà sa page youtube, c'est parfait ! Si tu as besoin d'aide sur ce point, je peux essayer de t'aider. J'ai eu quelques galères mais maintenant tout roule parfaitement
  4. Hi Since today, I can't add new band. Am I the one with this problem ? 20-8-21 10:58:02.1|Warn|SkyHookProxy|Error: ProtocolError: 'https://api.lidarr.audio/api/v0.4/search?type=artist&query=BANDNAME' [v0.7.1.1381] System.Net.WebException: Error: ProtocolError: 'https://api.lidarr.audio/api/v0.4/search?type=artist&query=BANDNAME' ---> System.Net.WebException: Error: ProtocolError at System.Net.WebConnection.InitConnection (System.Net.WebOperation operation, System.Threading.CancellationToken cancellationToken) [0x0015e] in /build/mono/src/mono/mcs/class/System/System.Net/WebConnection.cs:268 at System.Net.WebOperation.Run () [0x00052] in /build/mono/src/mono/mcs/class/System/System.Net/WebOperation.cs:268 at System.Net.WebCompletionSource`1[T].WaitForCompletion () [0x0008e] in /build/mono/src/mono/mcs/class/System/System.Net/WebCompletionSource.cs:111 at System.Net.HttpWebRequest.RunWithTimeoutWorker[T] (System.Threading.Tasks.Task`1[TResult] workerTask, System.Int32 timeout, System.Action abort, System.Func`1[TResult] aborted, System.Threading.CancellationTokenSource cts) [0x000e8] in /build/mono/src/mono/mcs/class/System/System.Net/HttpWebRequest.cs:956 at System.Net.HttpWebRequest.GetResponse () [0x0000f] in /build/mono/src/mono/mcs/class/System/System.Net/HttpWebRequest.cs:1218 at NzbDrone.Common.Http.Dispatchers.ManagedHttpDispatcher.GetResponse (NzbDrone.Common.Http.HttpRequest request, System.Net.CookieContainer cookies) [0x0011b] in <96b70a41daeb490db51c9994341a8d2b>:0 --- End of inner exception stack trace --- at NzbDrone.Common.Http.Dispatchers.ManagedHttpDispatcher.GetResponse (NzbDrone.Common.Http.HttpRequest request, System.Net.CookieContainer cookies) [0x001fb] in <96b70a41daeb490db51c9994341a8d2b>:0 at NzbDrone.Common.Http.HttpClient.ExecuteRequest (NzbDrone.Common.Http.HttpRequest request, System.Net.CookieContainer cookieContainer) [0x00080] in <96b70a41daeb490db51c9994341a8d2b>:0 at NzbDrone.Common.Http.HttpClient.Execute (NzbDrone.Common.Http.HttpRequest request) [0x00008] in <96b70a41daeb490db51c9994341a8d2b>:0 at NzbDrone.Common.Http.HttpClient.Get (NzbDrone.Common.Http.HttpRequest request) [0x00007] in <96b70a41daeb490db51c9994341a8d2b>:0 at NzbDrone.Common.Http.HttpClient.Get[T] (NzbDrone.Common.Http.HttpRequest request) [0x00000] in <96b70a41daeb490db51c9994341a8d2b>:0 at NzbDrone.Core.MetadataSource.SkyHook.SkyHookProxy.SearchForNewArtist (System.String title) [0x0014a] in <f339569e234a4fc1add8b9dab7a33d21>:0 Edet : Works this afternoon !
  5. Bonjour Je me présente, je suis Thomas, 35 ans, développeur web. J'utilise Unraid depuis quelques années maintenant pour plex, nextcloud, pihole, home assistant... J'ai un HP Proliant GEN8 avec un Xeon, 16Go de Ram, un SSD pour le cache et deux disques pour le moment. @Erym je pense que tu peux poser tes questions ici, ou n'hésite pas à créer un nouveau topic dans la section française.
  6. Maybe your server's IP is no longer the same
  7. I followed this tutorial from digiblur to install hassio in docker. Evrything works fine for months
  8. It is deprecated. You can use FreshRSS
  9. Try this: Edit config/ident.cfg on the flash drive and change USE_SSL from "yes" to "no", then reboot.
  10. Hi @ssinseeme I have no more ideas. Can you upload your screenshots ? I can't see them
  11. Hi You can install docker compose with the commands below : curl -L "https://github.com/docker/compose/releases/download/1.25.5/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose sudo chmod +x /usr/local/bin/docker-compose
  12. On spaceinvader vido, bitwarden image is running on a "proxynet" network. Did you follow this step ?
  13. No need for others ports. Yes, my bitwarden works with my domain. What video tutoriel did you follow ?
  14. I took the default file from letsencrypt\nginx\proxy-confs\bitwarden.subdomain.conf.sample, renamed it bitwarden.subdomain.conf and rename my image docker name from bitwardenrs to bitwarden. Did you create a custom netowrk as it's explained in the spaceinvader video ? Do you opened the ports in your router ? Does it work for another container ?
  15. Hi Here is my conf for bitwarden. Make sure your bitwarden container is named "bitwarden" server { listen 443 ssl; listen [::]:443 ssl; server_name bitwarden.*; include /config/nginx/ssl.conf; client_max_body_size 128M; # enable for ldap auth, fill in ldap details in ldap.conf #include /config/nginx/ldap.conf; location / { # enable the next two lines for http auth #auth_basic "Restricted"; #auth_basic_user_file /config/nginx/.htpasswd; # enable the next two lines for ldap auth #auth_request /auth; #error_page 401 =200 /login; include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_bitwarden bitwarden; proxy_pass http://$upstream_bitwarden:80; } location /notifications/hub { include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_bitwarden bitwarden; proxy_pass http://$upstream_bitwarden:80; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; } location /notifications/hub/negotiate { include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_bitwarden bitwarden; proxy_pass http://$upstream_bitwarden:80; } }
  16. Thanks for your reply Here is the hyper-v configuration in the xml <hyperv> <relaxed state='on'/> <vapic state='on'/> <spinlocks state='on' retries='8191'/> <vendor_id state='on' value='none'/> </hyperv> Hyper-v is enable by default when I create another VM so I suppose it was enable at the creation
  17. Hi I created a windows pro 10 VM with hyper-v enabled but I can't activate hyper-v in windows (I need it to install docker for windows) The error is "Impossible to install hyper-v : processor don't have virtualization features required" My CPU is a Intel Xeon E3-1265L V2 What can I do to activate hyper-v and install docker for windows ? Thanks !
  18. I found how to acces it via let's encrypt. But impossible to add it as default search in firefox. I have this error : Firefox can't find search plugin from https://mydomain/opensearch.xml Do you have an idea ?
  19. Thanks @ironface077, works perfectly ! Did you try to acces it from outside with a reverse proxy ?
  20. You can follow this video from spaceinvader
  21. Hi This week I had to format my usb backup drive. After that, I mounted the disk and lauch my rsync script. At the end of the backup I wanted to unmounted disk but it's not work. Logs says "Unmount of '/dev/sde2' failed. Error message: umount: /mnt/disks/Seagate_Backup_Plus_Drive: no mount point specified. " while my new drive name is Unraid_Backup. Can someone help me ? Thanks for your help tower-diagnostics-20200222-0756.zip
  22. Open a console (in docker) and execute this command : sudo -u abc php7 /config/www/nextcloud/occ maintenance:mode --off
  23. Hi My logs are full with these alerts : I already add rmmod acpi_power_meter in my go file but no changes. Is there another solution ? Thanks