Questions tagged [reverse-proxy]

A reverse proxy server usually refers to an HTTP accelerator or load-balancer which proxies requests on behalf of the actual clients to one or more backend HTTP servers.

A reverse proxy server usually refers to an proxy server which proxies requests on behalf of the actual clients to one or more backend HTTP servers.

It can be used as HTTP accelerator, or load-balancer, or to give the access to LAN internal web-services to Internet users.

Wikipedia: Reverse proxy

Apache HTTP as forward and reverse proxies

5119 questions
1
vote
0 answers

Caddy reverse proxy to multiple sites with docker, scalability

I'm trying to set-up a simple Caddy server on host machine to redirect multiple domains to multiple web servers hosted in Docker containers. This configuration tells Caddy to proxy all requests for each domain to a different Docker container running…
Filip Seman
  • 1,252
  • 2
  • 15
  • 22
1
vote
2 answers

Pfsense reverse proxy dilemma

I have in my home env two systems: a Docker server on 10.0.0.10/16, using Traefik reverse proxy with one of my public domains and a kubernetes cluster with VIP on 10.0.0.201/16, with Nginx and supposedly with another of my public domains my…
krapulax
  • 115
  • 2
  • 10
1
vote
0 answers

What URL React app should use to access Express API if both containers behind nginx reverse proxy

Lets say I have React app, Express API and nginx reverse proxy services that are docker containers created with docker-compose. I want to to bind port 80 on host to port 80 nginx and no more ports are exposed on host. React app service exposes 3000…
Tony
  • 303
  • 3
  • 13
1
vote
0 answers

Axis, wsdlsoap:address location and reverse proxy

I've used AXIS 1.4 to generate some webservices. These webservices will be called by clients, but their calls will go through a reverse proxy (apach with mod_proxy). The process is working fine, however in the generated wsdl (when calling…
Ziad WAKIM
  • 308
  • 1
  • 7
1
vote
0 answers

How to use traefik as a reverse proxy for grafana?

I try to use traefik as a reverse proxy for grafana. I want to route the requests coming to localhost/grafana to grafana. Here is my that part of docker compose file: grafana: image: grafana/grafana:9.4.2 ports: - "3000:3000" …
1
vote
2 answers

nextjs rewrites gives 404

In my local environment I'm trying to reach the development server which is in https://api.mydomain.com When I made the call from my nextjs/reactjs app I get CORS error, so I try to fix it with reverse proxy on next in the following way: /** @type…
Faabass
  • 1,394
  • 8
  • 29
  • 58
1
vote
2 answers

What is the optimal way to make external network requests using Axum, Tokio, and Hyper in Rust?

I have written pretty basic rust server which makes http call to defined url in environment variable, parse json response and return. Source Code | Flamegraph - IO Call | Dockerfile | Flamegraph - Static Json Nginx request - throughput ~30000…
pratik
  • 178
  • 11
1
vote
1 answer

YARP - Routing based on regular expression

Is it possible to use regular expressions in Match-Path-rules to match general broader url-patterns and to be able to match very specific patterns. I dont want to use {**catch-all} but for example an ordinary RegExp like /api/\w{1,3}-\d{1,9} ... Is…
user3154653
  • 203
  • 1
  • 11
1
vote
2 answers

Apache2 reverse proxy from multiple servers?

I am trying to make something work but I am not sure it is even possible. Here is the rundown on the devices I have connected. Main linux webserver - Authenticated website, controls some things, ran on device 1, IP address exposed to the…
slvrsky07
  • 11
  • 2
1
vote
0 answers

Using zammad behind nginx reverse proxy - Unable to login/sign up with Microsoft

All zammad functionality is working fine except for login/signup with Microsoft Error: My nginx reverse proxy config is: # Settings for a TLS enabled server. upstream backend { server 192.168.99.99:443; } server { ssl on; listen 9443…
Sana.91
  • 1,999
  • 4
  • 33
  • 52
1
vote
1 answer

Bad gateway from Kibana behind nodejs reverse proxys

I have a kibana instance behind a nodejs 16.x aws lambda reverse proxy. It works fine for almost everything, except for the "Discover" section when I add 2 or more filters for 2+ months timerange, it gives back bad gateway error. Detail of the…
1
vote
0 answers

Nginx - serving multiple builds

I am working on large project. frontend: react + typescript backend: spring boot java Recently the codebase starts growing larger in frontend (due to large number of forms). project |--> app1 `--> app2 I decided to separate the apps into own…
1
vote
1 answer

How to use nginx as a sidecar container for IIS in Kubernetes?

I have a strange result from using nginx and IIS server together in single Kubernetes pod. It seems to be an issue with nginx.conf. If I bypass nginx and go directly to IIS, I see the standard landing page - However when I try to go through the…
jrbe228
  • 356
  • 3
  • 11
1
vote
2 answers

Are reverse proxies the right way to authenticate and authorize Object Storage Bucket access?

this question has been on my mind for several months now. In very simple terms, pretty much any SaaS that operates B2B will be required to isolate user-generated files (PDFs, Images, Documents) between tenants. If a user from "Company A" uploads a…
1
vote
0 answers

httpd Reverse Proxy - Centos 8

I am trying to setup a reverse proxy using Apache2 on a Centos 8 server. I currently have nextcloud running on this apache server fine. This is hosted on the domain storage.domain.com. I'd like to setup a reverse proxy for the domain…
rowansc1
  • 23
  • 4
1 2 3
99
100