Bad Http request - "PRI" error?

If you run qBittorrent in / with Docker.
Post Reply
hellermyotomy
Newbie
Newbie
Posts: 1
Joined: Sun Nov 12, 2023 3:03 am

Bad Http request - "PRI" error?

Post by hellermyotomy »

Running two instances of qbittorrent via docker-compose (linuxserver images).
Started containers and able to connect to webui successfully.
Using nginx-proxy-manager to be able to use custom domain names.

Disabled ufw firewall but it did not help.
(When I was running this exact setup with 1 version of qbitorrent it worked perfectly - although I left ports and everything as default at the time)

Tried to download something but getting the following error:

Code: Select all

 Http::RequestParser::ParseResult Http::RequestParser::doParse(const QByteArray&) bad request: message too long
Bad Http request method, closing socket. IP: ::ffff:"ip_address". Method: "PRI"
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100    49    0     0  100    49      0   7218 --:--:-- --:--:-- --:--:--  8166
My compose file looks like this:

Code: Select all

#
  qbit-tv:
    image: lscr.io/linuxserver/qbittorrent:latest
    container_name: qbit-tv
    environment:
      - PUID=1002
      - PGID=1002
      - TZ=Europe/London
      - WEBUI_PORT=8090
      - UMASK=022
    volumes:
      - type: bind
        source: /home/user1/apps/qbittorrent-tv
        target: /config
      - type: bind
        source: /home/user1/data/torrents/tv
        target: /media
      - type: bind
        source: /home/user1/apps/cross-seed-tv/cross-seeds
        target: /cross-seeds
    ports:
      - 8090:80
      - 6891:6891
      - 6891:6891/udp
    restart: unless-stopped
    network_mode: host
#
  qbit-movies:
    image: lscr.io/linuxserver/qbittorrent:latest
    container_name: qbit-movies
    environment:
      - PUID=1002
      - PGID=1002
      - TZ=Europe/London
      - WEBUI_PORT=9080
      - UMASK=022
    volumes:
      - type: bind
        source: /home/user1/apps/qbittorrent-movies
        target: /config
      - type: bind
        source: /home/user1/data/torrents/movies
        target: /media
      - type: bind
        source: /home/user1/apps/cross-seed-movies/cross-seeds
        target: /cross-seeds
    ports:
      - 9080:80
      - 6881:6881
      - 6881:6881/udp
    restart: unless-stopped
    network_mode: host
Post Reply