Questions tagged [reverse-proxy]
The reverse-proxy tag has no summary.
73 questions
0
votes
0
answers
15
views
Usage of SSL directives in Apache backend-only https reverse-proxy?
I've recently migrated an existing Apache2 webserver config from a "traditional" Debian-based linux machine to an AWS EKS environment using the hub.docker Httpd Docker official image instead....
1
vote
2
answers
79
views
How do I host two domains on this nginx/apache2 webserver?
I'm trying to add a domain/website to my web server. I currently have some content being served by apache on port 8080, but requests to the server are sent through the nginx reverse proxy so I can ...
0
votes
1
answer
43
views
Requesting advice on which reverse proxy solution to use [closed]
I would like to clean slate some internet facing infrastructure, looking for recommendations on what reverse proxy solution would be easiest / most sensible to use to do this. I'm aware of CDN's like ...
0
votes
0
answers
48
views
Personal Domain Redirect to Several Aliased Hosts
I'm looking at attempting to redirect a personal domain to multiple different hosting providers. Say for instance I have a blog built with Jekyll deployed to both GitHub & GitLab Pages, and both ...
0
votes
1
answer
372
views
Caddy error on https://127.0.0.1/ or sub1.localhost
So, I have this Caddyfile
{
local_certs
debug
}
* {
respond "Hello, Default! {host}"
}
and this docker-compose.yml
version: "3.7"
services:
caddy:
image: caddy
...
1
vote
2
answers
64
views
Display a Wordpress website on a subdirectory of a Drupal website
My company's website is on Drupal. Let's say the website domain is blue.com
We just acquired another company "Acme" and their website is on Wordpress, and it HAS to stay on Wordpress.
-We ...
0
votes
1
answer
97
views
Is a zero trust https reverse proxy possible? [closed]
I have a small home server and I'm currently just pointing my domain to my static IP address but I'd like to stop doing that but without the use of current reverse proxy services as I don't like them. ...
0
votes
1
answer
96
views
In an apache reverse proxy config, for the max attempts, do balancers count as workers?
Within the ProxyPass directive is a table titled
Balancer parameters and it has a row called maxattempts. The default is as follows:
One less than the number of workers, or 1 with a single worker.
...
8
votes
3
answers
6k
views
Functional difference between proxypass and proxypassreverse in Apache
The official document states that:
The ProxyPass configures the server to fetch the appropriate documents, while the
ProxyPassReverse directive rewrites redirects originating at internal.example.com ...
1
vote
1
answer
91
views
Apache2 Only Showing Default Page/Unlimited Redirects
I am using a reverse proxy to show my bitwarden site. Here is the .conf in my sites enabled:
<VirtualHost *:80>
ServerName bitwarden.example.com
Redirect "/" "...
3
votes
3
answers
4k
views
Reverse proxy SSL with Nginx, do I need a wildcard or a separate cert for every host?
I have Nginx setup and successfully serving SSL to example.com using certbot/letsencrypt. But when I try to reverse proxy to a local machine I get NET::ERR_CERT_COMMON_NAME_INVALID. Here's the ...
1
vote
0
answers
198
views
I need some help modifying a url going through an apache Reverse Proxy [closed]
I inherited this system from my retired coworker who inherited it from the person who set it up, so my knowledge of reverse proxies is pretty bad. Here is the situation...
We are upgrading a system ...
1
vote
0
answers
257
views
Do I need to buy a domain for each sub domain I want to use with nginx?
I want to set up an nginx server on a vps to reverse proxy to some Minecraft servers that I am hosting and running locally on my home IP. I understand I will need to buy an A record for my domain(I ...
0
votes
1
answer
2k
views
Is it possible to detect that site is using reverse proxy?
If one will reverse proxy a site (copy) - how would one know its reverse proxied and not a real site?
Is there a simple method to detect without content plagiarism tools etc?
2
votes
1
answer
1k
views
Apache proxy, ws vs. wss and https
O-tree is a web-based software that uses websockets. I have it working on http://server.example:81 and I want it to be in https://server.example. It almost works with
<Location />
...