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

NginX redirect is not happening as desired

Hello So I have already running setup of node server(underly express js), a php server, nginx layer to mask both of them and cloudfront as cdn. Earlier I used to serve the home page(location /) from php but now I wish to distribute the load amongst…
1
vote
0 answers

Relative path to scripts when proxying becomes path from root

I'm having issues with how browser resolves relative path to scripts. The setup is that I have simple go server that serves one html page from root "/" location, the html page contains script tag with relative path to script (the path =…
oyevtushe
  • 11
  • 1
1
vote
0 answers

Proxy auth requests to firebaseapp.com for Firebase

I'm trying to setup reverse Proxy auth requests to firebaseapp.com for Firebase as it says in the documentation (https://firebase.google.com/docs/auth/web/redirect-best-practices#proxy-requests). I am hosting my Firebase install and I am trying to…
1
vote
0 answers

I want to deploy locally a SpringBoot app on Ubuntu Terminal with Apache Server 2, but it encounters an error

Apache conf: /etc/apache2/sites-available/andyrojaslab08.tk.conf ServerName andyrojaslab08.tk DocumentRoot /var/www/andyrojaslab08.tk/repo333 ProxyPreserveHost on ProxyPass / http://127.0.0.1:8080/ …
1
vote
0 answers

Modify data before sending to remote server using proxy server

I need to create a proxy server in Golang that acts as an intermediary between a client and a remote MySQL server. The client connects to the proxy server and provides a request without server credentials. The proxy server intercepts the request,…
1
vote
0 answers

SSH over HTTPS to a server behind a reverse proxy

How do I ssh over https through a reverse proxy? I have a docker container running a sshd at port 2222. I can ssh into the container locally with ssh -i id_rsa -p 2222 10001@localhost just fine. Once the docker container is hosted, it sits behind a…
slaffy
  • 11
  • 1
1
vote
1 answer

Configure Strapi to work with SSL (with proxy)

I'd like to set up Strapi so that mywebsite.de/api is redirected from Strapi's default port :1337. But at /api, my backend is not accessible. My frontend (on Gridsome Site Generator) is set to port 443 with an SSL certificate. I configured…
googleman
  • 21
  • 3
1
vote
1 answer

Forwarding specific requests from Kubernetes cluster to a proxy machine to access internet enabled services

We have a microservice application, which uses paid software to do some specific operations. This software uses online license verification to function properly. As customer Kubernetes cluster is in the VPC, which doesn't have access to the…
mflame
  • 137
  • 1
  • 2
  • 9
1
vote
1 answer

nginx only sending GET requests to unicorn

I'm trying to run a Rails 3 app proxied through nginx to unicorn, using the following virtual host. upstream nginx { server unix:/tmp/nginx.socket fail_timeout=0; } server { listen 80; server_name nginx.domain.net; rewrite ^(.*)…
James I
  • 198
  • 1
  • 14
1
vote
0 answers

Use local nginx proxy with dockerized images

I just installed nginx server in ubuntu 22.04 I created a new config file in /etc/nginx/sites-available/bimawelcome. here the nano /etc/nginx/sites-available/bimawelcome command upstream react-client { server server-ip-address:3000; } upstream…
1
vote
0 answers

upstream timed out (110: Unknown error) for dynamic content 504 Gateway Time-out

I have deployed my SpringBoot application on two other servers, and I am using nginx as a reverse proxy to access these servers. I encountered an error when accessing dynamic content using nginx reverse proxy, while accessing static content was…
GingerJ
  • 11
  • 2
1
vote
0 answers

How can I set up a reverse proxy with ingress-nginx using the contextroot?

I have a deployment that can have X replica (autoscaling). The pods are called e.g. "dp-1", "dp-2" etc. Each of these pods has (logically) the same configuration and tasks, but it is important to be able to access the WebUI of the individual…
1
vote
0 answers

docker nginx proxy always returns host refused to connect

I'm running a nginx reverse proxy container which has two subdomains. I can't reach either of the pages because it always returns "the site can't be reached". The proxy is on localhost and I added the subdomains to /etc/hosts. When I try my…
bakeljouw
  • 11
  • 3
1
vote
0 answers

RTSP proxying with Caddy

Problem I'm using MediaMTX to proxy an RTSP stream via a WebRTC endpoint. The MediaMTX server exposes a WebRTC endpoint on port 8889. I need to run the MediaMTX server on a VPS which is using Caddy as a reverse proxy and a static server to serve…
Abhijit
  • 468
  • 8
  • 22
1
vote
0 answers

How to connect to a websocket server using SocketIO and vite proxy?

I'm currently building a VueJS website that works with websockets, and I ran into an issue after adding a proxy for my websocket server (which uses Python|Flask) Here's my proxy configuration (that works for the '/api') vite.config.ts : export…
TheGabDooSan
  • 55
  • 1
  • 2
  • 8
1 2 3
99
100