bruchsturm

joined 2 years ago
[–] [email protected] 5 points 2 months ago

You will get better results if you twist the cables and then saturate them with solder before soldering them onto the PCB. Even better might be to get some solder on the board too before soldering

[–] [email protected] 36 points 1 year ago (1 children)

Yes, I donate once a year to the projects I use most. I allocate about 200€ and split it up among those.

[–] [email protected] 4 points 2 years ago

Thanks for the reminder! I had forgotten about that because login wasn't working for me when I started using antennapod a year ago

[–] [email protected] 2 points 2 years ago (2 children)

If I've learned something about selfhosting and backups it is that you can trust HDDs to spin for 3-5 years and should still do backups. I myself do backups to HDDs that are only powered on for these backups. I'm still not sure if thats enougth.

Raid is more for an always-on solution, but not great for safe backups. They still might get damaged at the same time, because you bought them at the same time, from the same vendor and they have the same usage time.

[–] [email protected] 7 points 2 years ago* (last edited 2 years ago) (1 children)

Oh God I'm an idiot. Thanks

[–] [email protected] 7 points 2 years ago* (last edited 2 years ago) (6 children)

I'm a bit confused. Using mullvad and I'm still seeding fine.

Could anyone explain why I need portforwarding?

Using mullvad wireguard and qbittorrent

Seeding with ~1Mbit right now, which is normal for my connection

Edit: thought soulseek is some torrent slang or client, I'm an idiot ^^

[–] [email protected] 0 points 2 years ago* (last edited 2 years ago) (1 children)
services:
  wireguard:
    image: lscr.io/linuxserver/wireguard:latest
    container_name: wireguard
    cap_add:
      - NET_ADMIN
      #- SYS_MODULE #needed if wireguard kernel module gets not loaded
    environment:
      - PUID=995
      - PGID=995
      - TZ=Europe/Vienna
    volumes:
      - wireguard_config:/config
      #- /lib/modules:/lib/modules stack #needed if wireguard kernel module gets not loaded
    ports:
      - 51820:51820
      - 51820:51820/udp
      - 8113:8113 #qbt WebUI - This is not necessary with trafik, I still have it for debug reasons and it's only reachable in my local network so I think its fine
    networks:
      - net
    labels:
      - traefik.enable=true
    sysctls:
      - net.ipv4.conf.all.src_valid_mark=1
      - net.ipv6.conf.all.disable_ipv6=0
    restart: unless-stopped

  qbittorrent:
    image: lscr.io/linuxserver/qbittorrent:latest
    container_name: qbittorrent
    network_mode: service:wireguard
    depends_on:
      - wireguard
    environment:
      - PUID=1004
      - PGID=1004
      - UMASK=002
      - TZ=Europe/Berlin
      - WEBUI_PORT=8113
    volumes:
      - qbt_config:/config
      - torrents:/data/torrents
      - media:/data/media
    labels:
      - traefik.enable=true
      - traefik.http.services.qbt.loadbalancer.server.port=8113
      - traefik.http.routers.qbt.rule=Host(`torrent.example.com`)
      - traefik.http.routers.qbt.middlewares=https-redirect@file
      - traefik.http.routers.qbt-secure.rule=Host(`torrent.example.com`)
      - traefik.http.routers.qbt-secure.entrypoints=websecure
      - traefik.http.routers.qbt-secure.tls=true
      - traefik.http.routers.qbt-secure.service=qbt
    restart: unless-stopped
 

I'm using a wireguard docker container to provide vpn connection to a qbittorrent container. When I compare it to wireguard on linux and the qbittorrent application, the same torrent is way slower. My server gets 2Mbit/s and my computer 15Mbit/s The 15Mbit/s is where my internet connection caps, while downloading that fast I can't watch YT videos. They both are in the same network using the same vpn provider and same endpoint.

for qbittorrent docker-compose I use network_mode: service:wireguard

[–] [email protected] 3 points 2 years ago (1 children)

Had to crash the app three times before reading these comments, haha

[–] [email protected] 2 points 2 years ago

Oh nice! Thanks :)