Questions tagged [reverse-proxy]
A reverse proxy is a type of proxy server that fetches resources from a specific defined set of servers for a client. It is used in cases when there is an advantage to not exposing the web server with the content directly whether it be for security reasons or because of a lack of available public IP addresses.
2,790
questions
0
votes
1answer
20 views
HAProxy send-proxy to Nginx
I am trying to reverse proxy clients to a web server through HAProxy and Nginx with SSL traffic using SNI. With the standard configuration, the web server sees the HAProxy IP and connects. When ...
0
votes
1answer
42 views
Will using reverse proxy negate the effect of CDN?
Goal: Serve a specific sub directory of a domain from a different CDN (cloudfront in our case). We are thinking of utilizing Nginx as a reverse proxy to achieve this.
For example, the following ...
0
votes
1answer
21 views
Reverse proxy blog.example.com to example.com/blog using Apache
EDIT - Added Vhosts config for the target subdomain.
I am trying to reverse proxy blog.subdomain.com to tld.com/blog. The current config I have right now redirects to the subdomain rather than render ...
0
votes
0answers
22 views
TSPlus behind nginx
I am running the open source version of nginx on Ubuntu 20. I am trying to reverse proxy Apps via HTML to multiple TSPlus servers. I get caching error on TSPlus web login page if I enable more than ...
-1
votes
0answers
16 views
Lua script proxy_pass doesn't work as expected
I am trying to make a reverse proxy with Lua script, Nginx is my proxy.
This is my .lua script part that makes the proxy_pass:
if content == "200" then
proxy_pass https://5dea42df1eeb....
0
votes
0answers
11 views
apache2 proxy directive based on nginx sample
I need to "translate" a simple proxy directive in a Apache2 one.
Here's the original Nginx rule:
server {
...
location ~/map(.*)$ {
proxy_pass http://127.0.0.1:8100$1;
}
}
...
0
votes
0answers
21 views
How to map multiple domains to a single service programatically?
I built a CMS as SaaS. In addition, I build a NextJS app that renders the content, the user created through the CMS. The NextJS app is deployed as Google Cloud Run service. It fetches the data from ...
0
votes
0answers
40 views
Nginx fails to proxy to Node
I have a running Node app that is live and works fine on http and https.
I setup Nginx and it is also running fine, tested with an sshtunnel, and it is getting a correct response from static files (...
0
votes
1answer
49 views
Create subdomains under a single IP/domain in an Nginx Reverse Proxy?
I'd like to be able to create a subdomain in Nginx Reverse proxy. As it stands right now, I have a properly configured and usable reverse proxy that resolves properly. The problem arises when I try to ...
-3
votes
0answers
20 views
access for only google services to private site [closed]
I have a site which have access from internet over static ip. And im a little paranoid and scare that something or some hackers can scan and found my site. Im not new in it and configured https, two ...
0
votes
2answers
31 views
How do I serve a localhost projects on a made up domain, such as mysite.test and testing.test simultaneously?
If this is possible it would save a lot of headaches. I would like to bind made up domains to localhost projects, if that is possible. I am on Ubuntu 20.10.
1
vote
0answers
15 views
How would you connect an Apache Reverse Proxy to a remote server via HTTPS?
I have an Apache Reverse Proxy set up that I'm trying to route to a remote IIS web site via https and its IP address. The website in question is a .Net5.0 website that uses Microsoft's Azure ...
1
vote
1answer
27 views
How do I rewrite root-relative redirects with ProxyPassReverse without affecting absolute redirects?
I have a number of web applications that need to sit behind a reverse proxy, like so:
http://example.com/app1/ => http://appserver.example:8801/
http://example.com/app2/ => http://appserver....
0
votes
0answers
8 views
MaxRequestWorkers limit raised on redirect subdomain to subfolder
I have an app working on thedomainiuse.com/myapp. Now I want to create a third level domain myapp.thedomainiuse.com to serve the same content. To do so I have tried to use proxy (I already use it to ...
0
votes
0answers
18 views
NGINX Revers Proxy subfolder URI path Issue
I have NGINX revers proxy implemented to access backend web service. Please note that the Web service is hosted on a different server, not NGINX server.
Web Service access URL in http://10.2.4.5/abcd/
...