Giter Club home page Giter Club logo

Comments (10)

JMSDOnline avatar JMSDOnline commented on June 18, 2024 1

Try changing localhost to 127.0.0.1 on the jackett.conf

example: (from this)

<Location /jackett>
ProxyPass http://localhost:9117/jackett
ProxyPassReverse http://localhost:9117/jackett
AuthType Digest
AuthName "rutorrent"
AuthUserFile '/etc/htpasswd'
Require user ${username}
</Location>

(to this)

<Location /jackett>
ProxyPass http://127.0.0.1:9117/jackett
ProxyPassReverse http://127.0.0.1:9117/jackett
AuthType Digest
AuthName "rutorrent"
AuthUserFile '/etc/htpasswd'
Require user ${username}
</Location>

from qb.

kanenses avatar kanenses commented on June 18, 2024

Getting same error...

Change from localhost to 127.0.0.1
Reload daemon
reload apache
after made changes, still getting error.

Folder for blackhole are writable.

from qb.

JMSDOnline avatar JMSDOnline commented on June 18, 2024

Seeing as how I am taking guesses here. Could you try this?

First run a2enmod headers

Then update you jackett.conf with the following:

RequestHeader set X-Forwarded-Proto "https"
<Location /jackett>
ProxyPass http://localhost:9117/jackett
ProxyPassReverse http://localhost:9117/jackett
AuthType Digest
AuthName "rutorrent"
AuthUserFile '/etc/htpasswd'
Require user ${username}
</Location>

If you are still having an issue, try removing the Auth fields and set Require to all granted instead of user ${username}

So it would become...

RequestHeader set X-Forwarded-Proto "https"
<Location /jackett>
ProxyPass http://localhost:9117/jackett
ProxyPassReverse http://localhost:9117/jackett
Require all granted
</Location>

Sometimes when these things happen, it could be a result of the Auth and certain functions are blocked.

from qb.

kanenses avatar kanenses commented on June 18, 2024

Not working any of the above solutions!

Trying all solutions, and nothing,

Pleasem anyone have same issues?

from qb.

JMSDOnline avatar JMSDOnline commented on June 18, 2024

Have you tried submitting your logs to the Jackett devs?

from qb.

kanenses avatar kanenses commented on June 18, 2024

I have take a look here:
Jackett/Jackett#1797

And according is something about reverse proxy ?!

from qb.

dtech4you avatar dtech4you commented on June 18, 2024

try seeing if something is up with your host file /etc/hosts make sure that localhost is there and that it leads to 127.0.0.1 sometimes the host file gets wonky for some reason

from qb.

JMSDOnline avatar JMSDOnline commented on June 18, 2024

Testing a new reverse config to see if this helps this issue. Requesting testing and feedback 👍

from qb.

kanenses avatar kanenses commented on June 18, 2024

Have testing it, get bad request to Jackett Server :-(

from qb.

reaperfromhell avatar reaperfromhell commented on June 18, 2024

I have blackhole working with this config xx-jackett.conf:

<Location /jackett>
ProxyPreserveHost On
RequestHeader set X-Forwarded-Proto "https"
ProxyPass http://127.0.0.1:9117/jackett
ProxyPassReverse http://127.0.0.1:9117/jackett
AuthType Digest
AuthName "rutorrent"
AuthUserFile '/etc/htpasswd'
Require user $(user)
</Location>

the 'xx-' makes the rule be processed last by apache. I have no idea if that's what makes it work or not.

from qb.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.