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

nginx reverse proxy - synology dsm issue

I currently have nginx serving as a reverse proxy on my router with a single server block and multiple locations mapping to specific ports on my NAS. Everything seems to be working fine except for one item -- Synology DSM. Right now, the only way…
shrimpy
  • 21
  • 1
  • 4
2
votes
1 answer

Nginx proxy - return last-modified header from upstream

I have problem with Nginx acting as proxy serwer: request -> NGINX PROXY -> app server (only one) Proxy server is listening on port 443 and an application server on 80. Headers returned by upstream server are being removed by proxy. I was forced to…
sihill
  • 41
  • 1
  • 8
2
votes
0 answers

Kibana 3 with nginx ldap authentication - doesn't accept OPTIONS method?

I have 2 virtual hosts on the same nginx server, that both use the nginx-auth-ldap module. the first virtual host is authenticating with ldap using nginx-auth-ldap, then forwards the request to the second virtual host which is a reverse proxy to my…
deez
  • 1,472
  • 3
  • 18
  • 28
2
votes
2 answers

Nginx - PHP scripts not being called from reverse proxy

I give below an execerpt of of /etc/nginx/sites-available/default file server { listen 443 ssl; server_name example.com; root /var/www/html; index index.php index.html; location / { try_files $uri…
DroidOS
  • 8,530
  • 16
  • 99
  • 171
2
votes
1 answer

Port number being set by IIS in the x-Forwarded-For header is different than the originally-targeted port

I have an IIS reverse-proxy set up on my dev box to test how my app treats requests that have gone through SSL offloading. My application needs to recreate the original request, append some query string params, and send it back to the client. By…
nashyura
  • 85
  • 1
  • 7
2
votes
2 answers

apache reverse proxy configuration

I am trying to configure reverse proxy for one application. Am using apache 2.2 web server below are my configuration rules ProxyRequests off ProxyPreserveHost on ProxyPass /app/ (http://11.11.111.11:123/) ProxyPassReverse /app/ …
HARA
  • 21
  • 2
2
votes
0 answers

Map apache2 proxy to different ports

I am running apache 2.2 and have a problem to map two different applications (Plex and Owncloud) on port 80. What I want to do is to proxy example/plex to localhost:32400/web (which is the default setting of plex). Also I want to map example/cloud…
Frodo
  • 21
  • 2
2
votes
1 answer

How to redirect different URLs to different ports on the same domain?

I have odoo running on port 8069 and I want to run wordpress on port 80 on the same domain. I would like to redirect example.com* to port 8069 except example.com/wordpress* which I want to go to port 80. I know this is similar to Redirecting from…
Mark
  • 195
  • 1
  • 18
2
votes
1 answer

ARR Reverse Proxy on Azure Website removes WebSockets response header 'Sec-WebSocket-Accept'

I'm trying to setup ARR inside of an Azure Website. I have a working implementation on an Azure VM, but would like to move to a Website so I don't have to actively manage the VM. The issue I am having is specific to the SignalR WebSockets connection…
Ian Schmitz
  • 320
  • 2
  • 13
2
votes
1 answer

haproxy: What are its uses?

I got information about haproxy from Stack Exchange Gives Back 2014 page. Stackoverflow is aso using this excellent application. After visiting haproxy website, I found its uses like - load balancer. So, Does it work like F5 (reverse proxy) and can…
user226817
  • 287
  • 1
  • 4
  • 10
2
votes
0 answers

Apache Reverse Proxy with Frontend and Backend Authentication

Here's the outcome I am trying to achieve: Client browser (Chrome in my case) hits the Apache HTTPd server (server1) on 50070. The client browser has no access to Kerberos KDC and carries no Kerberos/GSS auth data. Apache HTTPd has access to KDC…
Greg
  • 51
  • 5
2
votes
1 answer

IIS 7. Websites routing to avoid CORS

I'm trying to setup my local development environment for an angular application. I have the following projects: .NET Web API project that is hosted on a separate website (let's say localhost:81) MVC project with angular components hosted on default…
lostaman
  • 922
  • 12
  • 25
2
votes
2 answers

Running a custom webserver in cloud9 environment and reaching it from the outside world

Is it possible to run serve my web application from another server than the one provided in cloud9? For example : I would like to run different applications (PHP, Node.js - not sure what's possible yet) with nginx as the backend server (i) and/or a…
Mindaugas Bernatavičius
  • 3,757
  • 4
  • 31
  • 58
2
votes
0 answers

nginx reverse proxy to upstream via web proxy

I have an 3 legged NGINX reverse proxy setup with External, Internal and DMZ networks. NGINX has a reverse proxy server configured to listen on port 80 in the DMZ. I need to forward the request to another server via an upstream HTTP proxy, the…
Intra
  • 61
  • 9
2
votes
0 answers

Reverse proxy in subdirectory can't find static assets

I'm using Nginx as a reverse proxy to route requests to localhost to my node server, but requests to localhost/blog to a ghost server (a blogging platform) My Nginx config is like this: server { listen 80; server_name localhost; …
Migwell
  • 18,631
  • 21
  • 91
  • 160