GithubHelp home page GithubHelp logo

Comments (7)

chxseh avatar chxseh commented on June 25, 2024 1

Use sub domains. Proxy's to a "sub folder" cause so many problems, just add a subdomain.

from requestrr.

coder8338 avatar coder8338 commented on June 25, 2024

Also having an issue with this, using a basic nginx proxy config with:

        location /requestrr {
                 proxy_pass http://127.0.0.1:4545;
        }

However as there's no option to set the baseurl in requestrr, it's trying to serve all JS on /.

I've looked at a few options of setting the baseurl in system.webServer but so far nothing has worked.

from requestrr.

coder8338 avatar coder8338 commented on June 25, 2024

@ChaseHall unfortunately that's not an option with my setup

from requestrr.

darkalfx avatar darkalfx commented on June 25, 2024

This bug has been fixed in v1.0.14, you can now configure a base url with https for Requestrr.
I'm therefore closing this issue!

from requestrr.

drpoutine avatar drpoutine commented on June 25, 2024

This bug has been fixed in v1.0.14, you can now configure a base url with https for Requestrr.
I'm therefore closing this issue!

running v1.0.14. its not fixed.


Dec 31 21:26:05 server Requestrr.WebApi[2543587]: warn: Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionMiddleware[3]
Dec 31 21:26:05 server Requestrr.WebApi[2543587]:       Failed to determine the https port for redirect.

Do you have "Configure for HTTPS" checked in project settings?

forgot to mention. Web GUI loads. But auth doesnt work 🤔

from requestrr.

darkalfx avatar darkalfx commented on June 25, 2024

Requestrr itself doesnt support HTTPS, however it now supports being behind an HTTPS reverse proxy.

The proxy would handle the HTTPS, not Requestrr directly.

from requestrr.

brettpetch avatar brettpetch commented on June 25, 2024

Install requestrr for linux, as described in the wiki. Start the service to generate a sample config
Stop the requestrr service.
In /opt/requestrr/config/settings.json: close to the end of the file, set "BaseUrl":"/requestrr"

nginx config (swizzin tested): /etc/nginx/apps/requestrr.conf

location /requestrr {
  proxy_pass        http://127.0.0.1:4545/requestrr;
  proxy_set_header Host $proxy_host;
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  proxy_set_header X-Forwarded-Proto $scheme;
  proxy_redirect off;
}

sudo service nginx reload
start the requestrr service again.

from requestrr.

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.