thcolin / sensorr

πŸΏπŸ“Ό Sensorr - Your Friendly Digital Video Recorder
GNU Lesser General Public License v3.0
99 stars 7 forks source link

Unable to download torrent file (reverse proxy) #62

Closed Magicalex closed 4 years ago

Magicalex commented 4 years ago

Hi,

When I click on the button grab it I get the following message

Something went wrong during movie.2019.TRUEFRENCH.720p.BluRay grabing : FetchError: request to https://jackett:9117/dl/tracker/?jackett_apikey=xxxxxxxxxxxxxxxxxxxxxxxx&path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDlzd1kzWTFnbmdTbXFXcDZDaEViV0JvSjlqaUxzc3lQMHZCNUN3djVtdTl2V21MX1V4dnUxdVEtY3dlRVBjM1EzNDA2NUNYUVhfYUxKanJfN1V2VTYwOGNoZ2xndlMtcWNpR3o2Y1NVaWRRdjdZQmxQZS02WVNrTHlHbjVCTFdJeGs0TTlsZ3REWDQxQ0lWbEZMYlNaVVhZT1ltX3RES2hsTWdKdTFQYWlKWHo1Q0NWSFRFSTY3UzJ2WTg5c2RRT2UtWDA2SFR6SGtaRXFsa3p3NlRRcVpV&file=movie.2019.TRUEFRENCH.720p.BluRay failed, reason: write EPROTO 140089308867464:error:1408F10B:SSL routines:ssl3_get_record:wrong version number:../deps/openssl/openssl/ssl/record/ssl3_record.c:332:

This url is not correct : https://jackett:9117/dl/tracker/?jackett_apikey=xxxxxxxxxxxxxxxxxxxxxxxx The correct url is http://jackett:9117/dl/tracker/?jackett_apikey=xxxxxxxxxxxxxxxxxxxxxxxx

thcolin commented 4 years ago

Hello,

Could you send me response of proxy?url=[xxx] (from your browser network developer tools tab) requests when you try to "Find Releases" please ?

Thanks

Magicalex commented 4 years ago
Request URL: https://sensorr.domain.tld/proxy?url=xxxxxxx
Request Method: GET
Status Code: 403 
Remote Address: xx.xx.xxx.xxx:443
Referrer Policy: same-origin

{"message":"Blacklisted URL"}

and for grab

Request URL: https://sensorr.domain.tld/api/grab
Request Method: POST
Status Code: 520 
Remote Address: xx.xx.xxx.xxx:443
Referrer Policy: same-origin
thcolin commented 4 years ago

I disabled blacklist proxy security, let me know if it works without it !

Magicalex commented 4 years ago

With the latest docker image

Request URL: https://sensorr.domain.tld/proxy?url=aHR0cHM6Ly9qYWNrZXR0OjkxMTcvZGwvYWJub3JtYWwvP2phY2tldHRfYXBpa2V5PWpkMW9ueHhteGxlZ2JkZGh0a2hidW9nazdrYmcwaXJmJnBhdGg9UTJaRVNqaEJWblJ1UWpCdVVubHdUM05MYlZKcmJreDFiRGx6TldKMlNFdGpNMWx0YUV0T1JHRnpSMFZhTVc5QmVFWXRWRE5zVkRoZmVUZGpNMnhCVDJaQmF6RlFTRVJVWlcxUExUZEdSbnAwYTFaNE9HbHVXV2M0UjFneGNUSm1TVzFKWm1OWVRFeFBRMVpUWkRaeFdtazBjWFZOTTFoS1ozZHBSMUJOU1RaWWVWUnRlV3BRVFdWSmRIcHJNazFMUkROMmRrdExORTh3YjBsTllsYzVVbXRqTW5wVFZqSlNjVFptVm1kTUxVMVJOR2xFY1V4VmIyZERaV3hpYW5nd1pubDBRMGRMYUhOYWFEZDVSRWQyTTJ4VmVGTTBNWE4xT0dSdVMzUnBibWRtVlVoVlN6Sk9TSFJUTTBoWVJuUmsmZmlsZT1UaGUuTGlvbi5LaW5nLjIwMTkuRlJFTkNILjcyMHAuQkxVUkFZLngyNjQtVkVOVUU=
Request Method: GET
Status Code: 502 
Remote Address: xx.xxx.xx.xxx:443
Referrer Policy: same-origin
thcolin commented 4 years ago

Can you paste me returned content please ? Should be JSON with release and reason keys

Magicalex commented 4 years ago

@thcolin I have nothing, just my webserver (reverse proxy) with 502 http error

thcolin commented 4 years ago

And for Find Releases request ? I take download link for each release from this response. Else, if you could explain me your architecture or send me your docker-compose it would be helpful.

Magicalex commented 4 years ago

my docker-compose

version: '3'

networks:
  seedbox:
    driver: bridge

services:
  nginx:
    container_name: nginx
    restart: always
    image: xataz/reverse-nginx:latest
    networks:
      - seedbox
    environment:
      - DEFAULT_SITE=false
    ports:
      - 80:8080
      - 443:8443
    volumes:
      - /docker/nginx/www:/nginx/www
      - /docker/nginx/sites:/nginx/custom_sites
      - /docker/nginx/conf.d:/nginx/custom.d
      - /docker/nginx/log:/nginx/log
      - /docker/nginx/ssl:/nginx/ssl
      - /docker/nginx/passwds:/nginx/passwds
      - /var/run/docker.sock:/var/run/docker.sock
    depends_on:
      - rtorrent-rutorrent
      - jackett
      - sensorr

  rtorrent-rutorrent:
    container_name: rtorrent-rutorrent
    restart: always
    image: xataz/rtorrent-rutorrent:latest
    networks:
      - seedbox
    environment:
      - UID=1000
      - GID=1000
      - WEBROOT=/
      - PORT_RTORRENT=45000
      - DISABLE_PERM_DATA=true
    ports:
      - 45000:45000
    volumes:
      - /home/user:/data
      - /docker/rtorrent-rutorrent:/config

  sensorr:
    container_name: sensorr
    restart: always
    image: thcolin/sensorr:latest
    networks:
      - seedbox
    volumes:
      - /docker/sensorr/config:/app/sensorr/config
      - /home/user/.watch:/app/sensorr/blackhole

  jackett:
    container_name: jackett
    restart: always
    image: linuxserver/jackett:latest
    networks:
      - seedbox
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Paris
    volumes:
      - /docker/jackett/config:/config
      - /home/user/.watch:/downloads

nginx config for sensorr

server {
  listen 8443 ssl http2;
  server_name sensorr.domain.tld;

  ssl_certificate /nginx/ssl/live/domain.tld/cert.pem;
  ssl_certificate_key /nginx/ssl/live/domain.tld/privkey.pem;
  ssl_trusted_certificate /nginx/ssl/live/domain.tld/chain.pem;

  include /nginx/custom.d/ssl.conf;
  include /nginx/custom.d/headers.conf;

  location / {
    proxy_pass http://sensorr:5070;
    include /nginx/custom.d/proxy.conf;

    # Websocket
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
  }

  access_log /nginx/log/sensorr-access.log combined;
  error_log /nginx/log/sensorr-error.log error;
}

nginx config for jackett

server {
  listen 8443 ssl http2;
  server_name jackett.domain.tld;

  ssl_certificate /nginx/ssl/live/domain.tld/cert.pem;
  ssl_certificate_key /nginx/ssl/live/domain.tld/privkey.pem;
  ssl_trusted_certificate /nginx/ssl/live/domain.tld/chain.pem;

  include /nginx/custom.d/ssl.conf;
  include /nginx/custom.d/headers.conf;

  location / {
    proxy_pass http://jackett:9117;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection keep-alive;
    proxy_cache_bypass $http_upgrade;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_set_header X-Forwarded-Host $http_host;
  }

  access_log /nginx/log/jackett-access.log combined;
  error_log /nginx/log/jackett-error.log error;
}

sensorr config Annotation 2019-11-12 000710

find release request

All url jackett is wrong see my first post

<?xml version="1.0" encoding="UTF-8"?>
<rss version="1.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:torznab="http://torznab.com/schemas/2015/feed">
  <channel>
    <atom:link href="https://jackett:9117/" rel="self" type="application/rss+xml" />
    <title>Xthor</title>
    <description>General French Private Tracker</description>
    <link>https://xthor.tk/</link>
    <language>en-us</language>
    <category>search</category>
    <image>
      <url>https://jackett:9117/logos/xthor.png</url>
      <title>Xthor</title>
      <link>https://xthor.tk/</link>
      <description>Xthor</description>
    </image>
    <item>
      <title>Le.Roi.Lion.2.1998.TRUEFRENCH.BRRip.x264-GHZ</title>
      <guid>https://xthor.tk/details.php?id=302499</guid>
      <jackettindexer id="xthor">Xthor</jackettindexer>
      <comments>https://xthor.tk/details.php?id=302499</comments>
      <pubDate>Sun, 07 Oct 2018 11:24:07 +0200</pubDate>
      <size>585116561</size>
      <files>2</files>
      <grabs>58</grabs>
      <description />
      <link>https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl2M3YwZUlCT3ZQLXY0cFhVSzVuQVdycXVjVjdwM0ZZQWZNZGZsWkFKSy1oOGNxUTJ1OUdZdGNtODNUSTFVTFo4WlgtcVBEamNLTDh0Ulc3SlpXQk1xdjNNYXdfWFQwa2I1Z3pRaC02YW1UYUZXMVV4ajNQbXZfU2pSbDZXWk4tR1pMQ3BxNXlSZEFiV01zZU5KUHFnQnNxbER3b1h6M0NKRjBrcUhTRkdVbXhB&amp;file=Le.Roi.Lion.2.1998.TRUEFRENCH.BRRip.x264-GHZ</link>
      <category>2020</category>
      <category>100031</category>
      <enclosure url="https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl2M3YwZUlCT3ZQLXY0cFhVSzVuQVdycXVjVjdwM0ZZQWZNZGZsWkFKSy1oOGNxUTJ1OUdZdGNtODNUSTFVTFo4WlgtcVBEamNLTDh0Ulc3SlpXQk1xdjNNYXdfWFQwa2I1Z3pRaC02YW1UYUZXMVV4ajNQbXZfU2pSbDZXWk4tR1pMQ3BxNXlSZEFiV01zZU5KUHFnQnNxbER3b1h6M0NKRjBrcUhTRkdVbXhB&amp;file=Le.Roi.Lion.2.1998.TRUEFRENCH.BRRip.x264-GHZ" length="585116561" type="application/x-bittorrent" />
      <torznab:attr name="category" value="2020" />
      <torznab:attr name="category" value="100031" />
      <torznab:attr name="seeders" value="30" />
      <torznab:attr name="peers" value="30" />
      <torznab:attr name="minimumratio" value="1" />
      <torznab:attr name="minimumseedtime" value="345600" />
      <torznab:attr name="downloadvolumefactor" value="1" />
      <torznab:attr name="uploadvolumefactor" value="1" />
    </item>
    <item>
      <title>Le.roi.lion.2.1998.PAL.MULTi.DVD5-NoTAG</title>
      <guid>https://xthor.tk/details.php?id=225717</guid>
      <jackettindexer id="xthor">Xthor</jackettindexer>
      <comments>https://xthor.tk/details.php?id=225717</comments>
      <pubDate>Sun, 25 Feb 2018 15:35:26 +0100</pubDate>
      <size>4343175168</size>
      <files>9</files>
      <grabs>4</grabs>
      <description />
      <link>https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDlzWVg4MjZkNUxCQ1ZBUUZDcWdXbUpHY05vZzdENnhLUVhfOXhIWjFpejZnUE1yZFgxNkRldHVsS2JfeDREcGRlaGtPaWxiYWdrd255MHNMc3hJenY1eVFaTUpuWnVMSnRyU2VmMTJYb1llY1RTX3hiTHpaendzamxvc0VnWkxSWXF6RTdZUlNlXzdicjkxVTJEUm9VdXp4VkRmdU1UeXZ0QTQtQTNYMW9yd2dn&amp;file=Le.roi.lion.2.1998.PAL.MULTi.DVD5-NoTAG</link>
      <category>2020</category>
      <category>100031</category>
      <enclosure url="https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDlzWVg4MjZkNUxCQ1ZBUUZDcWdXbUpHY05vZzdENnhLUVhfOXhIWjFpejZnUE1yZFgxNkRldHVsS2JfeDREcGRlaGtPaWxiYWdrd255MHNMc3hJenY1eVFaTUpuWnVMSnRyU2VmMTJYb1llY1RTX3hiTHpaendzamxvc0VnWkxSWXF6RTdZUlNlXzdicjkxVTJEUm9VdXp4VkRmdU1UeXZ0QTQtQTNYMW9yd2dn&amp;file=Le.roi.lion.2.1998.PAL.MULTi.DVD5-NoTAG" length="4343175168" type="application/x-bittorrent" />
      <torznab:attr name="category" value="2020" />
      <torznab:attr name="category" value="100031" />
      <torznab:attr name="seeders" value="0" />
      <torznab:attr name="peers" value="0" />
      <torznab:attr name="minimumratio" value="1" />
      <torznab:attr name="minimumseedtime" value="345600" />
      <torznab:attr name="downloadvolumefactor" value="1" />
      <torznab:attr name="uploadvolumefactor" value="1" />
    </item>
    <item>
      <title>Le.Roi.Lion.3.Hakuna.Matata.2004.Truefrench.1080p.Bluray.Remux.AVC-BDHD</title>
      <guid>https://xthor.tk/details.php?id=159850</guid>
      <jackettindexer id="xthor">Xthor</jackettindexer>
      <comments>https://xthor.tk/details.php?id=159850</comments>
      <pubDate>Sat, 12 Aug 2017 10:23:43 +0200</pubDate>
      <size>19096392458</size>
      <files>1</files>
      <grabs>22</grabs>
      <description />
      <link>https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl0bzFYd2c1d05MNldqanRHYU5xd255amtxNHVEUG1ZZl9zeHR0RkU4eUxMaU9ucG5PUmpKVzNmQnZRQ1VRd3N3RUFTNXRkV0Z1Zk03VXp6QlJSeXF0RXNyVV90MWhVN1B1UTIxX3RkemZKQW9kQ0lmVUFqdDdrME4zcHJhTnByY185WDZ5dnBlZEl6djlrYy1hclFoSnZFenZBcjNVbjU4T0lhREgteHlwR25R&amp;file=Le.Roi.Lion.3.Hakuna.Matata.2004.Truefrench.1080p.Bluray.Remux.AVC-BDHD</link>
      <category>2020</category>
      <category>100031</category>
      <enclosure url="https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl0bzFYd2c1d05MNldqanRHYU5xd255amtxNHVEUG1ZZl9zeHR0RkU4eUxMaU9ucG5PUmpKVzNmQnZRQ1VRd3N3RUFTNXRkV0Z1Zk03VXp6QlJSeXF0RXNyVV90MWhVN1B1UTIxX3RkemZKQW9kQ0lmVUFqdDdrME4zcHJhTnByY185WDZ5dnBlZEl6djlrYy1hclFoSnZFenZBcjNVbjU4T0lhREgteHlwR25R&amp;file=Le.Roi.Lion.3.Hakuna.Matata.2004.Truefrench.1080p.Bluray.Remux.AVC-BDHD" length="19096392458" type="application/x-bittorrent" />
      <torznab:attr name="category" value="2020" />
      <torznab:attr name="category" value="100031" />
      <torznab:attr name="seeders" value="3" />
      <torznab:attr name="peers" value="3" />
      <torznab:attr name="minimumratio" value="1" />
      <torznab:attr name="minimumseedtime" value="345600" />
      <torznab:attr name="downloadvolumefactor" value="1" />
      <torznab:attr name="uploadvolumefactor" value="1" />
    </item>
    <item>
      <title>Le.roi.lion.2.1998.TRUEFRENCH.1080p.bluray.x264.ac3-ZeGino</title>
      <guid>https://xthor.tk/details.php?id=65431</guid>
      <jackettindexer id="xthor">Xthor</jackettindexer>
      <comments>https://xthor.tk/details.php?id=65431</comments>
      <pubDate>Fri, 23 Sep 2016 01:15:50 +0200</pubDate>
      <size>3568328187</size>
      <files>1</files>
      <grabs>102</grabs>
      <description />
      <link>https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl2dEREYlJiczFIOVg5RUVlV0FTeExxa1pCNXp4SzJhUm9TdHVaY3RPclltY1NMM2FTSVRYYW1WUGZTblV5SUhwMEtLWlFFRlc2VEw2ZUp6UEY4UHpjU29HcXl4bzVOZDNJMTFScmQ0NG85ZUhBYlhHTlF2RzFZMEFybDZkWWVpVzAtLTFDM2ZJbUs2Q1NHVkYtT3BkdDJVanZLSDVkdDV6cFdPLTVyTC1CWlBn&amp;file=Le.roi.lion.2.1998.TRUEFRENCH.1080p.bluray.x264.ac3-ZeGino</link>
      <category>2020</category>
      <category>100031</category>
      <enclosure url="https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl2dEREYlJiczFIOVg5RUVlV0FTeExxa1pCNXp4SzJhUm9TdHVaY3RPclltY1NMM2FTSVRYYW1WUGZTblV5SUhwMEtLWlFFRlc2VEw2ZUp6UEY4UHpjU29HcXl4bzVOZDNJMTFScmQ0NG85ZUhBYlhHTlF2RzFZMEFybDZkWWVpVzAtLTFDM2ZJbUs2Q1NHVkYtT3BkdDJVanZLSDVkdDV6cFdPLTVyTC1CWlBn&amp;file=Le.roi.lion.2.1998.TRUEFRENCH.1080p.bluray.x264.ac3-ZeGino" length="3568328187" type="application/x-bittorrent" />
      <torznab:attr name="category" value="2020" />
      <torznab:attr name="category" value="100031" />
      <torznab:attr name="seeders" value="12" />
      <torznab:attr name="peers" value="12" />
      <torznab:attr name="minimumratio" value="1" />
      <torznab:attr name="minimumseedtime" value="345600" />
      <torznab:attr name="downloadvolumefactor" value="1" />
      <torznab:attr name="uploadvolumefactor" value="1" />
    </item>
    <item>
      <title>Le.Roi.Lion.3.2004.TRUEFRENCH.720p.BluRay.x264-FrIeNdS</title>
      <guid>https://xthor.tk/details.php?id=63017</guid>
      <jackettindexer id="xthor">Xthor</jackettindexer>
      <comments>https://xthor.tk/details.php?id=63017</comments>
      <pubDate>Mon, 12 Sep 2016 03:20:01 +0200</pubDate>
      <size>3658693427</size>
      <files>2</files>
      <grabs>92</grabs>
      <description />
      <link>https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl1emd4dVg3c2JuZm1JcmNKbkZ3WjlNenA4c0V3TXdHc2pTSVhab1puWUFFR3V4dWFhQjlEZ0RsNDJSZVM2RXJoYlBvblpBT050VVE0OG95YVBuZzA0eVJLaF9ZUUdJQ3BYSXg1aWJETFNtNkctV3hEbFFueUFVUlphMmoxRlozOExmVlB5UjUxQkhINWpGWnNQWTBOVjR4RnhQSUxTZnhmV0ZjSVZXeHBBZDNB&amp;file=Le.Roi.Lion.3.2004.TRUEFRENCH.720p.BluRay.x264-FrIeNdS</link>
      <category>2020</category>
      <category>100031</category>
      <enclosure url="https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl1emd4dVg3c2JuZm1JcmNKbkZ3WjlNenA4c0V3TXdHc2pTSVhab1puWUFFR3V4dWFhQjlEZ0RsNDJSZVM2RXJoYlBvblpBT050VVE0OG95YVBuZzA0eVJLaF9ZUUdJQ3BYSXg1aWJETFNtNkctV3hEbFFueUFVUlphMmoxRlozOExmVlB5UjUxQkhINWpGWnNQWTBOVjR4RnhQSUxTZnhmV0ZjSVZXeHBBZDNB&amp;file=Le.Roi.Lion.3.2004.TRUEFRENCH.720p.BluRay.x264-FrIeNdS" length="3658693427" type="application/x-bittorrent" />
      <torznab:attr name="category" value="2020" />
      <torznab:attr name="category" value="100031" />
      <torznab:attr name="seeders" value="15" />
      <torznab:attr name="peers" value="15" />
      <torznab:attr name="minimumratio" value="1" />
      <torznab:attr name="minimumseedtime" value="345600" />
      <torznab:attr name="downloadvolumefactor" value="1" />
      <torznab:attr name="uploadvolumefactor" value="1" />
    </item>
    <item>
      <title>Le.Roi.Lion.2.1998.TRUEFRENCH.720p.BluRay.x264-FrIeNdS</title>
      <guid>https://xthor.tk/details.php?id=63016</guid>
      <jackettindexer id="xthor">Xthor</jackettindexer>
      <comments>https://xthor.tk/details.php?id=63016</comments>
      <pubDate>Mon, 12 Sep 2016 03:19:21 +0200</pubDate>
      <size>3880611493</size>
      <files>2</files>
      <grabs>81</grabs>
      <description />
      <link>https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl1ai04dXlZWXVNZU9GZUllejVZVjBybndLNHBpLUxCeXctTW9wMVJSb0MyaGJJOS1TTUFLejYzV3ZoUDQzNEwtUkNlRGVKRzAtTU5UV25WbUVNZUZWY3FIS2VnVGctWWk0by1MWVctaWpSZGdCcHpWY1JaTEl1SFFXMTFreEtYNmpIZzNoSlBpQmszTGRLMGM1c0NMOU05aUQ0eHA1WWhNdE1fZjlENHJTalFR&amp;file=Le.Roi.Lion.2.1998.TRUEFRENCH.720p.BluRay.x264-FrIeNdS</link>
      <category>2020</category>
      <category>100031</category>
      <enclosure url="https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl1ai04dXlZWXVNZU9GZUllejVZVjBybndLNHBpLUxCeXctTW9wMVJSb0MyaGJJOS1TTUFLejYzV3ZoUDQzNEwtUkNlRGVKRzAtTU5UV25WbUVNZUZWY3FIS2VnVGctWWk0by1MWVctaWpSZGdCcHpWY1JaTEl1SFFXMTFreEtYNmpIZzNoSlBpQmszTGRLMGM1c0NMOU05aUQ0eHA1WWhNdE1fZjlENHJTalFR&amp;file=Le.Roi.Lion.2.1998.TRUEFRENCH.720p.BluRay.x264-FrIeNdS" length="3880611493" type="application/x-bittorrent" />
      <torznab:attr name="category" value="2020" />
      <torznab:attr name="category" value="100031" />
      <torznab:attr name="seeders" value="17" />
      <torznab:attr name="peers" value="17" />
      <torznab:attr name="minimumratio" value="1" />
      <torznab:attr name="minimumseedtime" value="345600" />
      <torznab:attr name="downloadvolumefactor" value="1" />
      <torznab:attr name="uploadvolumefactor" value="1" />
    </item>
    <item>
      <title>Le.Roi.Lion.1994.TrueFrench.720p.BluRay.x264-FrIeNdS</title>
      <guid>https://xthor.tk/details.php?id=63015</guid>
      <jackettindexer id="xthor">Xthor</jackettindexer>
      <comments>https://xthor.tk/details.php?id=63015</comments>
      <pubDate>Mon, 12 Sep 2016 03:18:23 +0200</pubDate>
      <size>4242585986</size>
      <files>2</files>
      <grabs>219</grabs>
      <description />
      <link>https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl1bzRVZHQ2SDJMbDE5QXBkUU9Tc21IYlRxV0FmNUxST0N5TVlVUDFwYnRnZUowUUFXOVpJOG1rZ1hmdzZfdHFhNU1RRWhUUVJGdVFWSy1XZnJYZF9LczlnSUVjd002QlludnZUMk5SN3htRVVIQ2FIQzFGOWQ3b1dDMEF2eFJZQllqekdZTmx6WkJMLWktcjNJOEYyQkstczc5SXQ1a3RtUWJxV093R2tLaFZR&amp;file=Le.Roi.Lion.1994.TrueFrench.720p.BluRay.x264-FrIeNdS</link>
      <category>2020</category>
      <category>100031</category>
      <enclosure url="https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl1bzRVZHQ2SDJMbDE5QXBkUU9Tc21IYlRxV0FmNUxST0N5TVlVUDFwYnRnZUowUUFXOVpJOG1rZ1hmdzZfdHFhNU1RRWhUUVJGdVFWSy1XZnJYZF9LczlnSUVjd002QlludnZUMk5SN3htRVVIQ2FIQzFGOWQ3b1dDMEF2eFJZQllqekdZTmx6WkJMLWktcjNJOEYyQkstczc5SXQ1a3RtUWJxV093R2tLaFZR&amp;file=Le.Roi.Lion.1994.TrueFrench.720p.BluRay.x264-FrIeNdS" length="4242585986" type="application/x-bittorrent" />
      <torznab:attr name="category" value="2020" />
      <torznab:attr name="category" value="100031" />
      <torznab:attr name="seeders" value="37" />
      <torznab:attr name="peers" value="37" />
      <torznab:attr name="minimumratio" value="1" />
      <torznab:attr name="minimumseedtime" value="345600" />
      <torznab:attr name="downloadvolumefactor" value="1" />
      <torznab:attr name="uploadvolumefactor" value="1" />
    </item>
    <item>
      <title>Le.Roi.Lion.3.Hakuna.Matata.2004.TRUEFRENCH.BDRIP.x264.AC3-CherryCoke</title>
      <guid>https://xthor.tk/details.php?id=39511</guid>
      <jackettindexer id="xthor">Xthor</jackettindexer>
      <comments>https://xthor.tk/details.php?id=39511</comments>
      <pubDate>Thu, 14 Apr 2016 15:38:42 +0200</pubDate>
      <size>689144824</size>
      <files>1</files>
      <grabs>95</grabs>
      <description />
      <link>https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl1TU80Ny00RjJkTTBCUTFfR3hYWElFN2dTMy1tQVJVR0w3V3BQQ2pZNnN0eVdhSENkYnJWNElnZG9hOFhpMkVFcTI1el9EWm50Ql9xS0dEM0dPMkFrZjQ5WlM4VHRRZjVObXFmZVJJZ1FNOGlpLXAycGRFOUl1QXExS2FhZWQtWUsycW9lWng4Ul9kMWw4blg2UFpyNTIwZlhKM0pjSUNBZkdOdzlVSDRqMlp3&amp;file=Le.Roi.Lion.3.Hakuna.Matata.2004.TRUEFRENCH.BDRIP.x264.AC3-CherryCoke</link>
      <category>2020</category>
      <category>100031</category>
      <enclosure url="https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl1TU80Ny00RjJkTTBCUTFfR3hYWElFN2dTMy1tQVJVR0w3V3BQQ2pZNnN0eVdhSENkYnJWNElnZG9hOFhpMkVFcTI1el9EWm50Ql9xS0dEM0dPMkFrZjQ5WlM4VHRRZjVObXFmZVJJZ1FNOGlpLXAycGRFOUl1QXExS2FhZWQtWUsycW9lWng4Ul9kMWw4blg2UFpyNTIwZlhKM0pjSUNBZkdOdzlVSDRqMlp3&amp;file=Le.Roi.Lion.3.Hakuna.Matata.2004.TRUEFRENCH.BDRIP.x264.AC3-CherryCoke" length="689144824" type="application/x-bittorrent" />
      <torznab:attr name="category" value="2020" />
      <torznab:attr name="category" value="100031" />
      <torznab:attr name="seeders" value="31" />
      <torznab:attr name="peers" value="31" />
      <torznab:attr name="minimumratio" value="1" />
      <torznab:attr name="minimumseedtime" value="345600" />
      <torznab:attr name="downloadvolumefactor" value="1" />
      <torznab:attr name="uploadvolumefactor" value="1" />
    </item>
    <item>
      <title>Le.roi.lion.1994.Truefrench.1080p.Bluray.Remux.AVC-BDHD</title>
      <guid>https://xthor.tk/details.php?id=28061</guid>
      <jackettindexer id="xthor">Xthor</jackettindexer>
      <comments>https://xthor.tk/details.php?id=28061</comments>
      <pubDate>Thu, 21 Jan 2016 20:52:40 +0100</pubDate>
      <size>19700182832</size>
      <files>1</files>
      <grabs>20</grabs>
      <description />
      <link>https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl0bU92YW9NQmRoSFhNWHJZbThfZ1JObmFzRTJuSFZjZGlDZXdybUV5RHQweFVMd2diNUhGN0IycXpZVEVra1BaTzFmRTV5bHlKY2tGblNWM25KczlHcGZVSXRiQ19rWWt6LW5wUkFxTXpPM21LSFh3OExIVEE0cl9ZY0xUYVFCdEZsN3VUaWVZZTVVR2ZoWnFvNG9yZDdRYmFudjZIdVk0Q3FGU1hwX0h2aGV3&amp;file=Le.roi.lion.1994.Truefrench.1080p.Bluray.Remux.AVC-BDHD</link>
      <category>2020</category>
      <category>100031</category>
      <enclosure url="https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxxfile=Le.roi.lion.1994.Truefrench.1080p.Bluray.Remux.AVC-BDHD" length="19700182832" type="application/x-bittorrent" />
      <torznab:attr name="category" value="2020" />
      <torznab:attr name="category" value="100031" />
      <torznab:attr name="seeders" value="0" />
      <torznab:attr name="peers" value="0" />
      <torznab:attr name="minimumratio" value="1" />
      <torznab:attr name="minimumseedtime" value="345600" />
      <torznab:attr name="downloadvolumefactor" value="1" />
      <torznab:attr name="uploadvolumefactor" value="1" />
    </item>
    <item>
      <title>Le.Roi.Lion.1994.FRENCH.DVDRiP-NoTag</title>
      <guid>https://xthor.tk/details.php?id=11361</guid>
      <jackettindexer id="xthor">Xthor</jackettindexer>
      <comments>https://xthor.tk/details.php?id=11361</comments>
      <pubDate>Sat, 30 May 2015 10:10:16 +0200</pubDate>
      <size>724101120</size>
      <files>1</files>
      <grabs>142</grabs>
      <description />
      <link>https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl0VVZhS2VVZTdkVGV0MzY0a3VlWjdZSlFlSkZKaDZzYk1sSnQ5M3hqcFAzRDNINnEzUV9faFh0MzJoSmEwLW5MODVoT1ZUT3pNekpLSnFpNHJDU3N0ZjF3LTk5a2VrTkJTM3g5eGpWNmNvalpWU3NHQktQR2ZIYkRua3JNMWtvRmg5TnpXOWREQ0JkVnBvek52Z1ZJdFJwRExVWGFoVFdPN2FsWUxsTktsemxR&amp;file=Le.Roi.Lion.1994.FRENCH.DVDRiP-NoTag</link>
      <category>2020</category>
      <category>100031</category>
      <enclosure url="https://jackett:9117/dl/xthor/?jackett_apikey=xxxxxxxxxxxxxxxxxx&amp;path=Q2ZESjhBVnRuQjBuUnlwT3NLbVJrbkx1bDl0VVZhS2VVZTdkVGV0MzY0a3VlWjdZSlFlSkZKaDZzYk1sSnQ5M3hqcFAzRDNINnEzUV9faFh0MzJoSmEwLW5MODVoT1ZUT3pNekpLSnFpNHJDU3N0ZjF3LTk5a2VrTkJTM3g5eGpWNmNvalpWU3NHQktQR2ZIYkRua3JNMWtvRmg5TnpXOWREQ0JkVnBvek52Z1ZJdFJwRExVWGFoVFdPN2FsWUxsTktsemxR&amp;file=Le.Roi.Lion.1994.FRENCH.DVDRiP-NoTag" length="724101120" type="application/x-bittorrent" />
      <torznab:attr name="category" value="2020" />
      <torznab:attr name="category" value="100031" />
      <torznab:attr name="seeders" value="32" />
      <torznab:attr name="peers" value="32" />
      <torznab:attr name="minimumratio" value="1" />
      <torznab:attr name="minimumseedtime" value="345600" />
      <torznab:attr name="downloadvolumefactor" value="0" />
      <torznab:attr name="uploadvolumefactor" value="1" />
    </item>
  </channel>
</rss>
thcolin commented 4 years ago

Thanks, it will be helpful ! Could you share me your nginx/custom.d/ssl.conf, nginx/custom.d/headers.conf, nginx/custom.d/proxy.conf please ?

Magicalex commented 4 years ago

headers.conf

add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload";
add_header X-Frame-Options SAMEORIGIN;
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
add_header Expect-CT "enforce, max-age=604800";
add_header Referrer-Policy "same-origin";

ssl.conf

ssl_protocols TLSv1.2;
ssl_ecdh_curve X25519:P-521:P-384:P-256;
ssl_ciphers "EECDH+CHACHA20:EECDH+AES";
ssl_prefer_server_ciphers on;

ssl_session_cache shared:SSL:20m;
ssl_session_timeout 15m;
ssl_session_tickets off;

proxy.conf

proxy_set_header        Host                 $host;
proxy_set_header        X-Real-IP            $remote_addr;
proxy_set_header        X-Forwarded-For      $proxy_add_x_forwarded_for;
proxy_set_header        X-Remote-Port        $remote_port;
proxy_set_header        X-Forwarded-Proto    $scheme;
proxy_redirect          off;
proxy_intercept_errors  on;
proxy_connect_timeout   20s;
proxy_read_timeout      20s;
thcolin commented 4 years ago

I've fixed the issue with last commit, docker build will be available soon. Don't know why but as I already said, Jackett items[].link use https over http even when requested in http, maybe nginx proxy settings ?

Thanks btw, I now know how to generate certificates for dev purpose with mkcert πŸŽ‰

Magicalex commented 4 years ago

Problem solved on my side.