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
1 answer

Http-TCP/IP proxy programming

I need to create a server that will receive an encrypted/signed message in form of a http request (Google App Engine), decrypt it/check the signature, and send it over a TCP/IP connection (Bitcoin network). Moreover, it will need to do the same in…
ThePiachu
  • 8,695
  • 17
  • 65
  • 94
1
vote
0 answers

Docker + Keycloak + IIS Reverse Proxy: calls to External Idp "/authorize" endpoint Base Url being replaced by proxy domain name

I have a dockerized keycloak container, running inside a vpn with an IIS reverse proxy which seems to be overwriting the login.microsoftonline.com/[tenantId]/.../authorize endpoint url with the proxy domain name when trying to login to microsoft…
1
vote
0 answers

WordPress Site with Docker behind Apache reverse proxy keeps redirecting from domain to 127.0.0.1

I'm currently in the process of setting up WordPress using Docker Compose and Apache which is running on the host as a reverse proxy (unfortunately, I can't use nginx). Additionally, I use Cloudflare. When I attempt to access the site using the…
3rKaN_BRATTE
  • 11
  • 1
  • 5
1
vote
1 answer

try_files redirecting instead of using fallback directory?

I'm running an nginx SPA application.However for requests I would like a fallback/fallthrough approach: I have the main directory / which has the main /index.html as well as "default" icons. However it also contains a subdirectory /local/ which…
paul23
  • 8,799
  • 12
  • 66
  • 149
1
vote
0 answers

Exception "The SSL connection could not be established." when using Yarp.ReverseProxy in Docker linux container

I have an error Yarp.ReverseProxy.Forwarder.HttpForwarder[48] Request: An error was encountered before receiving a response. System.Net.Http.HttpRequestException: The SSL connection could not be established, see inner exception. …
1
vote
1 answer

Go ReverseProxy handle redirect error: "http: invalid Read on closed Body"

here is my code, when origin server return 302, reverse proxy will modify the request and serve it again, but if the request with a body, it print an error: http: invalid Read on closed Body proxy =…
Kaniu
  • 23
  • 4
1
vote
1 answer

How to Modify Paths/Routes for Golang Reverse Proxy

I am working on a reverse proxy that proxies to different remote machines based on the service name specified by the path. In this scenario I have a situation similar to this: remote1: -route1: ---file1 -route2: ---nestedRoute: ------file2 A…
solonly
  • 9
  • 2
1
vote
0 answers

Why is my note.js app not responsive on Apache reverse proxy?

When I open my website on the directory I assigned for the node.js app(for example domain.com/node) it just shows the html file not the responsive node.js app. When i try to access it using the port like ip:port it works fine, so I think its my…
Sobig_F
  • 23
  • 2
1
vote
0 answers

I want to make a reverse proxy for some containers

I want to make a reverse proxy for rpi 4 and I have some questions and some issues to solve. First things first I successfully deployed my containers. Then I made a docker compose for my nginx service. The written compose is down below. Now the…
Cheat3d
  • 35
  • 6
1
vote
0 answers

Node js reverse proxy works on http but not on https

I'm trying to deploy a vite-plugin-ssr app. I'm using CloudPanel on a digital ocean server. I have a nodejs server that is running locally on the server and is exposed on port 3000. I am running the server with the command npm run server and it will…
Refilon
  • 3,334
  • 1
  • 27
  • 51
1
vote
1 answer

nginx reverse proxy pass/redirect not working

I am trying to achieve the below with nginx - I have 2 docker containers running on a server once container runs nginx on port 80 & takes requests from AWS application load balancer. Then based on the path in the URL, it is supposed to redirect to…
usert4jju7
  • 1,653
  • 3
  • 27
  • 59
1
vote
1 answer

Apache: how to unescape my client certificate?

I have a configuration where I have nginx terminating https as reverse proxy, behind that an apache server that serves a perl application (openxpki). That apache server needs to inject the client certificate into ENV:SSL_CLIENT_CERT in order for…
1
vote
1 answer

setup Azure Application Gateway the same as nginx reverse proxy

This is my current nginx config which works the way I want. server { listen 443 ssl; server_name subdomain.domain.com; ssl_certificate /etc/ssl/domain.pem; ssl_certificate_key /etc/ssl/domain.key; location /domain-folder1 { …
1
vote
0 answers

How to Reverse Proxy with URL Rewriting and Trailing Slash with NGINX

I have a reverse proxy setup with NGINX and behind my reverse proxy, I have two VPN Servers; one for students and one for admin, which requires UI access for management purposes. Student's VPN UI: 192.168.101.10:443 Admin's VPN UI: …
nickcrv06
  • 127
  • 11
1
vote
0 answers

Creating API gateway for REST and gRPC service?

I have a number of microservices that are both REST and gRPC. I'm planning to create a simple API gateway in Go so that a server in my local machine can access these microservices through 1 entry. The purpose is for development, i.e when I develop a…
hskris
  • 101
  • 4