Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Shells Virtual Desktop
BMail.ag - Secure Email Service
Server.net
CPLicense.net
VPS Server
Buy VPN
Vultr
VMs for AI
HostDare
ReliableSite White-Label Dedicated Hosting for Resellers
InterServer VPS
BMail.ag - Secure Email Service
Best VPN
High-Performance Bare Metal Server Solutions
Karvl.com
Server Mania Cloud Hosting
DataWagon Hosting
AlphaVPS Hosting
Evoxt.com
Clouvider
VPS Hosting with NVMe
Residential IPs in the US & 4G Mobile Proxies in EU & US with Unlimited Bandwidth
ReliableSite White-Label Dedicated Hosting for Resellers
Rabisu - Hosting Solutions
Shells Virtual Desktop
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

GreenCloud | #1 TOP PROVIDER 2024 SALE | DOUBLE PROMOTIONS with GENOA/9950x | +$2000 GIVEAWAYS

1258259261263264810

Comments

  • @FAT32 said:

    @cainyxues said:

    what if i am sleeping during the 400k how will @NDTN compensate me ? @FAT32 justice please

    I think the problem is I will also be sleeping

    think about a solution please, I could have already got one vps but some fker grabbed it I was paying with my card it changed during payment :disappointed:

  • beanman109beanman109 Member, Host Rep, Megathread Squad

    @emgh said:

    @beanman109 said: it all in one image

    not a pro

    sory that my docker network setup for torrenting romanian sisters thru moldova isn;t to your satisfaction

    Thanked by 3plumberg admax emgh
  • @beanman109 said:

    @emgh said:

    @beanman109 said:

    @emgh said:

    @beanman109 said:
    anyone got the link to the qbittorrent docker ima ge with wireguard built in

    you don't do docker like that

    one vpn container

    and then

    network_mode: service:vpn on the container on the vpn network

    i found ithttps://hotio.dev/containers/qbittorrent/#__tabbed_3_2

    it's hella dumb

    y
    its got it all in one image and killswitch built in

    network_mode: service:vpn effectively works as a killswitch anyway if the VPN connection dies.

    Thanked by 3plumberg admax emgh
  • plumbergplumberg Veteran, Megathread Squad

    @emgh said:

    @allthemtings said:

    @beanman109 said:
    anyone got the link to the qbittorrent docker ima ge with wireguard built in

    fuck docker

    fuck you

    Fuck ipv4

  • emghemgh Member, Megathread Squad
    vpn:
      container_name: vpn
      image: dperson/openvpn-client:latest
      cap_add:
        - net_admin # required to modify network interfaces
      restart: unless-stopped
      volumes:
        - /dev/net:/dev/net:z # tun device
        - ${ROOT}/config/vpn:/vpn # OpenVPN configuration
      security_opt:
        - label:disable
      ports:
        - 8112:8112 # port for deluge web UI to be reachable from local network
      command: "-r 192.168.1.0/24" # route local network traffic
    
    deluge:
      container_name: deluge
      image: linuxserver/deluge:latest
      restart: always
      network_mode: service:vpn # run on the vpn network
      environment:
        - PUID=${PUID} # default user id, defined in .env
        - PGID=${PGID} # default group id, defined in .env
        - TZ=${TZ} # timezone, defined in .env
      volumes:
        - ${ROOT}/downloads:/downloads # downloads folder
        - ${ROOT}/config/deluge:/config # config files
    

    I guess same thing with WG
    https://github.com/sebgl/htpc-download-box?tab=readme-ov-file#setup-a-vpn-container

    Thanked by 3admax Blembim sh97
  • beanman109beanman109 Member, Host Rep, Megathread Squad

    @plumberg said:

    @emgh said:

    @allthemtings said:

    @beanman109 said:
    anyone got the link to the qbittorrent docker ima ge with wireguard built in

    fuck docker

    fuck you

    Fuck ipv4

    right that sits

    Thanked by 3plumberg admax emgh
  • emghemgh Member, Megathread Squad

    @beanman109 said:

    @emgh said:

    @beanman109 said: it all in one image

    not a pro

    sory that my docker network setup for torrenting romanian sisters thru moldova isn;t to your satisfaction

    yeah it fucking sucks

  • I need to update my own wiki since it's still referring to qBitTorrent v4.6.7, but this is effectively what I run:

    services:
        vpn:
            container_name: wireguard
            image: jordanpotter/wireguard
            cap_add:
                - NET_ADMIN
                - SYS_MODULE
            sysctls:
                net.ipv4.conf.all.src_valid_mark: 1
                net.ipv6.conf.all.disable_ipv6: 0
            volumes:
                ### I use AirVPN, so first I have a "device": https://airvpn.org/devices/
                ### Then I make sure to open a port (with P2P support) via: https://airvpn.org/ports/
                ### For that generated port, I choose the device I created earlier.
    
                ### The WireGuard config is then generated via https://airvpn.org/generator/
                ### Select one of the servers closest to where you're hosting your qBitTorrent setup
                ### Download the .conf file, rename it to vpn.conf and put it in the same folder as the docker-compose.yml file.
                - ./vpn.conf:/etc/wireguard/vpn.conf
            ports:
                ### I run NGINX on the host server for a reverse proxy.
                ### The secondary `8080` matches the `WEBUI_PORT` on the qBitTorrent container configuration below.
                - "127.0.0.1:8888:8080"
            restart: unless-stopped
    
        ### As of October 2024, qBitTorrent just released v5.0.0, but most trackers don't support this yet.
        ### Therefore the container below is sticking to v4.6.7.
        ### Make sure that your tracker supports v5.0.0 before updating to it!
        ### Personally I'd hold off on updating until v5.0.1, v5.0.2 or any other v5.x.x, until it has been out for a good month or so, to weed out most of the issues
        qbittorrent:
            container_name: qbittorrent
            image: ghcr.io/linuxserver/qbittorrent:4.6.7
            restart: unless-stopped
            depends_on:
                - vpn
            network_mode: "service:vpn"
            volumes:
                ### This holds the qBitTorrent configuration. If you want, you could rely on Docker volumes instead. I prefer have it all in the same directory as my Docker Compose yml files.
                - ./config:/config
                ### /data is where I point my downloads towards, you might use /mnt - or something else. Up to you!
                - /data:/data
            environment:
                ### For permissions, you might have to adjust this depending on your user or group ID in Linux.
                ### You can use `id your-username-here` on the server/system you're running Docker to figure out what user ID (uid) and group ID (gid) you wanna use.
                # - PUID=112
                # - PGID=114
                ### Depending on where you live, you might want to change the line below. Europe/Oslo should work for anyone in Central European Time though :)
                - TZ=Europe/Oslo
                - WEBUI_PORT=8080
    
  • @komdragon said:

    @FAT32 said:

    @cainyxues said:

    what if i am sleeping during the 400k how will @NDTN compensate me ? @FAT32 justice please

    I think the problem is I will also be sleeping

    wait a minute, you also sleep?

    Naaah. He doesn't - he's just claiming that to lull us into sleep thinking there won't be much action when he's sleeping. If you watch carefully, he's always awake and becomes (hyper) active just in time before/after deals. He has a bot to eat-work and do the non-LET things. He's always personally involved with all things LET on the dealing-wheeling side of stuff.

    Thanked by 2cainyxues FAT32
  • wadhahwadhah Member, Host Rep

    @beanman109 are you using dockge? It makes dealing with networks and compose files easier, also helps with .env bullshit

  • emghemgh Member, Megathread Squad

    STOP IT

    Thanked by 2cainyxues plumberg
  • plumbergplumberg Veteran, Megathread Squad

    Reguards

    Thanked by 1Decicus
  • beanman109beanman109 Member, Host Rep, Megathread Squad

    @emgh said:

    @beanman109 said:

    @emgh said:

    @beanman109 said: it all in one image

    not a pro

    sory that my docker network setup for torrenting romanian sisters thru moldova isn;t to your satisfaction

    yeah it fucking sucks

    ufw deny emgh

  • sh97sh97 Member, Host Rep

    @emgh said:
    vpn:
    container_name: vpn
    image: dperson/openvpn-client:latest
    cap_add:
    - net_admin # required to modify network interfaces
    restart: unless-stopped
    volumes:
    - /dev/net:/dev/net:z # tun device
    - ${ROOT}/config/vpn:/vpn # OpenVPN configuration
    security_opt:
    - label:disable
    ports:
    - 8112:8112 # port for deluge web UI to be reachable from local network
    command: "-r 192.168.1.0/24" # route local network traffic

    deluge:
    container_name: deluge
    image: linuxserver/deluge:latest
    restart: always
    network_mode: service:vpn # run on the vpn network
    environment:
    - PUID=${PUID} # default user id, defined in .env
    - PGID=${PGID} # default group id, defined in .env
    - TZ=${TZ} # timezone, defined in .env
    volumes:
    - ${ROOT}/downloads:/downloads # downloads folder
    - ${ROOT}/config/deluge:/config # config files

    I guess same thing with WG
    https://github.com/sebgl/htpc-download-box?tab=readme-ov-file#setup-a-vpn-container

    Real men torrent on ddr ignor saarvars.

  • @emgh said:
    STOP IT

    Your wish is my command. RESTARTed as requested.

    Thanked by 3emgh Decicus plumberg
  • beanman109beanman109 Member, Host Rep, Megathread Squad

    @wadhah said:
    @beanman109 are you using dockge? It makes dealing with networks and compose files easier, also helps with .env bullshit

    nah i dont have issues with my docker setups at all, emgh is just making poroblems out of nothing
    i just forgot to take a copy of the compose ive using for 3 years before giving away the ovh server that had it last

  • emghemgh Member, Megathread Squad

    @beanman109 said:

    @wadhah said:
    @beanman109 are you using dockge? It makes dealing with networks and compose files easier, also helps with .env bullshit

    nah i dont have issues with my docker setups at all, emgh is just making poroblems out of nothing
    i just forgot to take a copy of the compose ive using for 3 years before giving away the ovh server that had it last

    fuck you

    Thanked by 2beanman109 Decicus
  • emghemgh Member, Megathread Squad

    combining services into one docker image actually gets to me ngl

    Thanked by 1Decicus
  • beanman109beanman109 Member, Host Rep, Megathread Squad

    @emgh said:

    @beanman109 said:

    @wadhah said:
    @beanman109 are you using dockge? It makes dealing with networks and compose files easier, also helps with .env bullshit

    nah i dont have issues with my docker setups at all, emgh is just making poroblems out of nothing
    i just forgot to take a copy of the compose ive using for 3 years before giving away the ovh server that had it last

    fuck you

    ill drink to that

    Thanked by 3emgh admax Decicus
  • emghemgh Member, Megathread Squad

    especially if then running this singular image in a fucking compose

    Thanked by 2beanman109 Decicus
  • Need to sleep, see you guys.

  • @beanman109 said:

    @wadhah said:
    @beanman109 are you using dockge? It makes dealing with networks and compose files easier, also helps with .env bullshit

    nah i dont have issues with my docker setups at all

    First step - denial

    emgh is just making poroblems out of nothing

    Second step - blame (someone else)

    i just forgot to take a copy of the compose ive using for 3 years before giving away the ovh server that had it last

    Third step - it's a technology problem (i.e. not me).

    Confirmed DENIALHOLIC.

    Thanked by 3emgh wadhah plumberg
  • wadhahwadhah Member, Host Rep

    @emgh said:
    combining services into one docker image actually gets to me ngl

    I think I once saw a 1000~ line compose file for a suite of self hosted arr apps :D

    That yml took a while to download

  • emghemgh Member, Megathread Squad

    @wadhah said:

    @emgh said:
    combining services into one docker image actually gets to me ngl

    I think I once saw a 1000~ line compose file for a suite of self hosted arr apps :D

    That yml took a while to download

    sad

  • @Decicus said:
    I need to update my own wiki since it's still referring to qBitTorrent v4.6.7, but this is effectively what I run:

    services:
        vpn:
            container_name: wireguard
            image: jordanpotter/wireguard
            cap_add:
                - NET_ADMIN
                - SYS_MODULE
            sysctls:
                net.ipv4.conf.all.src_valid_mark: 1
                net.ipv6.conf.all.disable_ipv6: 0
            volumes:
                ### I use AirVPN, so first I have a "device": https://airvpn.org/devices/
                ### Then I make sure to open a port (with P2P support) via: https://airvpn.org/ports/
                ### For that generated port, I choose the device I created earlier.
    
                ### The WireGuard config is then generated via https://airvpn.org/generator/
                ### Select one of the servers closest to where you're hosting your qBitTorrent setup
                ### Download the .conf file, rename it to vpn.conf and put it in the same folder as the docker-compose.yml file.
                - ./vpn.conf:/etc/wireguard/vpn.conf
            ports:
                ### I run NGINX on the host server for a reverse proxy.
                ### The secondary `8080` matches the `WEBUI_PORT` on the qBitTorrent container configuration below.
                - "127.0.0.1:8888:8080"
            restart: unless-stopped
    
        ### As of October 2024, qBitTorrent just released v5.0.0, but most trackers don't support this yet.
        ### Therefore the container below is sticking to v4.6.7.
        ### Make sure that your tracker supports v5.0.0 before updating to it!
        ### Personally I'd hold off on updating until v5.0.1, v5.0.2 or any other v5.x.x, until it has been out for a good month or so, to weed out most of the issues
        qbittorrent:
            container_name: qbittorrent
            image: ghcr.io/linuxserver/qbittorrent:4.6.7
            restart: unless-stopped
            depends_on:
                - vpn
            network_mode: "service:vpn"
            volumes:
                ### This holds the qBitTorrent configuration. If you want, you could rely on Docker volumes instead. I prefer have it all in the same directory as my Docker Compose yml files.
                - ./config:/config
                ### /data is where I point my downloads towards, you might use /mnt - or something else. Up to you!
                - /data:/data
            environment:
                ### For permissions, you might have to adjust this depending on your user or group ID in Linux.
                ### You can use `id your-username-here` on the server/system you're running Docker to figure out what user ID (uid) and group ID (gid) you wanna use.
                # - PUID=112
                # - PGID=114
                ### Depending on where you live, you might want to change the line below. Europe/Oslo should work for anyone in Central European Time though :)
                - TZ=Europe/Oslo
                - WEBUI_PORT=8080
    

    Thx u, now i can safely torrent anime linux isos

    Thanked by 2Decicus admax
  • wadhahwadhah Member, Host Rep

    Hey I just hit 1k likes. Why do I still feel empty? I was promised seratonin

  • @beanman109 sir green bean why don't you use wg-easy instead of openvpn? https://github.com/wg-easy/wg-easy

    Thanked by 2admax Blembim
  • 321K views

  • @Blembim said:

    @Decicus said:
    I need to update my own wiki since it's still referring to qBitTorrent v4.6.7, but this is effectively what I run:

    services:
        vpn:
            container_name: wireguard
            image: jordanpotter/wireguard
            cap_add:
                - NET_ADMIN
                - SYS_MODULE
            sysctls:
                net.ipv4.conf.all.src_valid_mark: 1
                net.ipv6.conf.all.disable_ipv6: 0
            volumes:
                ### I use AirVPN, so first I have a "device": https://airvpn.org/devices/
                ### Then I make sure to open a port (with P2P support) via: https://airvpn.org/ports/
                ### For that generated port, I choose the device I created earlier.
    
                ### The WireGuard config is then generated via https://airvpn.org/generator/
                ### Select one of the servers closest to where you're hosting your qBitTorrent setup
                ### Download the .conf file, rename it to vpn.conf and put it in the same folder as the docker-compose.yml file.
                - ./vpn.conf:/etc/wireguard/vpn.conf
            ports:
                ### I run NGINX on the host server for a reverse proxy.
                ### The secondary `8080` matches the `WEBUI_PORT` on the qBitTorrent container configuration below.
                - "127.0.0.1:8888:8080"
            restart: unless-stopped
    
        ### As of October 2024, qBitTorrent just released v5.0.0, but most trackers don't support this yet.
        ### Therefore the container below is sticking to v4.6.7.
        ### Make sure that your tracker supports v5.0.0 before updating to it!
        ### Personally I'd hold off on updating until v5.0.1, v5.0.2 or any other v5.x.x, until it has been out for a good month or so, to weed out most of the issues
        qbittorrent:
            container_name: qbittorrent
            image: ghcr.io/linuxserver/qbittorrent:4.6.7
            restart: unless-stopped
            depends_on:
                - vpn
            network_mode: "service:vpn"
            volumes:
                ### This holds the qBitTorrent configuration. If you want, you could rely on Docker volumes instead. I prefer have it all in the same directory as my Docker Compose yml files.
                - ./config:/config
                ### /data is where I point my downloads towards, you might use /mnt - or something else. Up to you!
                - /data:/data
            environment:
                ### For permissions, you might have to adjust this depending on your user or group ID in Linux.
                ### You can use `id your-username-here` on the server/system you're running Docker to figure out what user ID (uid) and group ID (gid) you wanna use.
                # - PUID=112
                # - PGID=114
                ### Depending on where you live, you might want to change the line below. Europe/Oslo should work for anyone in Central European Time though :)
                - TZ=Europe/Oslo
                - WEBUI_PORT=8080
    

    Thx u, now i can safely torrent anime linux isos

    BTW why doo you guys need to store linux iso's like its available online you can watch there :smile: is there something I am missing here?

  • beanman109beanman109 Member, Host Rep, Megathread Squad

    @emgh said:
    especially if then running this singular image in a fucking compose

    ddr ignor

    version: '3.3'
    services:
      qbittorrent:
        container_name: qbittorrent
        image: ghcr.io/hotio/qbittorrent
        restart: unless-stopped
        ports:
          - "8080:8080"
        environment:
          - PUID=1000
          - PGID=1000
          - UMASK=002
          - TZ=Australia/Brisbane
          - WEBUI_PORTS=8080/tcp,8080/udp
          - VPN_ENABLED=true
          - VPN_CONF=wg0
          - VPN_PROVIDER=generic
          - VPN_LAN_LEAK_ENABLED=false
          - VPN_KEEP_LOCAL_DNS=false
          - VPN_FIREWALL_TYPE=auto
          - VPN_HEALTHCHECK_ENABLED=false
          - PRIVOXY_ENABLED=false
          - UNBOUND_ENABLED=false
        volumes:
          - /root/qbittorrent/config:/config
          - /root/qbittorrent/data:/data
    
    Thanked by 4emgh admax Blembim sh97
Sign In or Register to comment.