JackPo

Members
  • Posts

    5
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

JackPo's Achievements

Noob

Noob (1/14)

0

Reputation

  1. actually, looked in my log and saw a bunch of issues around rtorrent listening to new IP after VPN reconnects, seems like it can't access rtxmlrpc. [info] rTorrent listening interface IP 10.16.112.9 and VPN provider IP 10.26.112.111 different, marking for reconfigure 2021-01-04 14:33:45,124 DEBG 'watchdog-script' stdout output: [info] rTorrent incoming port 45817 and VPN incoming port 50542 different, marking for reconfigure 2021-01-04 14:33:45,125 DEBG 'watchdog-script' stderr output: /home/nobody/rtorrent.sh: line 13: rtxmlrpc: command not found 2021-01-04 14:33:45,125 DEBG 'watchdog-script' stderr output: /home/nobody/rtorrent.sh: line 19: rtxmlrpc: command not found 2021-01-04 14:33:45,126 DEBG 'watchdog-script' stderr output: /home/nobody/rtorrent.sh: line 24: rtxmlrpc: command not found
  2. Did you ever resolve this issue? I'm dealing with this now too 😕
  3. I have this container running, but everytime I try and access the webui, I get the plaintext of the website instead of the right MIME type, any idea what I did wrong? <!DOCTYPE html> <html lang="${LANG}"> <head> <meta charset="UTF-8" /> <title>qBittorrent QBT_TR(Web UI)QBT_TR[CONTEXT=OptionsDialog]</title> <link rel="icon" type="image/png" href="images/skin/qbittorrent32.png" /> <link rel="icon" type="image/svg+xml" href="images/skin/qbittorrent-tray.svg" /> <link rel="stylesheet" type="text/css" href="css/login.css?v=${CACHEID}" /> <noscript> <link rel="stylesheet" type="text/css" href="css/noscript.css?v=${CACHEID}" /> </noscript> <script src="scripts/login.js?locale=${LANG}&v=${CACHEID}"></script> </head> <body> <noscript id="noscript"> <h1>QBT_TR(JavaScript Required! You must enable JavaScript for the Web UI to work properly)QBT_TR[CONTEXT=HttpServer]</h1> </noscript> <div id="main"> <h1>qBittorrent QBT_TR(Web UI)QBT_TR[CONTEXT=OptionsDialog]</h1> <div id="logo" class="col"> <img src="images/skin/qbittorrent-tray.svg" alt="qBittorrent logo" /> </div> <div id="formplace" class="col"> <form id="loginform" method="post" onsubmit="submitLoginForm();"> <div class="row"> <label for="username">QBT_TR(Username)QBT_TR[CONTEXT=HttpServer]</label><br /> <input type="text" id="username" name="username" autocomplete="username" /></div> <div class="row"> <label for="password">QBT_TR(Password)QBT_TR[CONTEXT=HttpServer]</label><br /> <input type="password" id="password" name="password" autocomplete="current-password" /></div> <div class="row"> <input type="submit" id="login" value="QBT_TR(Login)QBT_TR[CONTEXT=HttpServer]" /> </div> </form> </div> <div id="error_msg"></div> </div> </body> </html>