All Questions
Tagged with reverse-proxy docker
141
questions
0
votes
0
answers
71
views
Hosting passbolt container on server using nginx reverse proxy
I'm trying to host passbolt on my server using container setup; on this server I also have to host multiple websites, each with a different domain;
so I thought of configuring an nginx reverse proxy ...
0
votes
0
answers
50
views
Docker/WordPress in Sub-Path Redirects to Root
I installed WordPress+OpenLiteSpeed in Docker using this script, adapting it for my needs.
I'm hosting the blog in /blog sub-path here.
I added this to wp-config.php
define('WP_HOME', 'https://www....
0
votes
0
answers
166
views
Nginx as reverse proxy , rewrite or proxy pass request to docker container
I'm trying to use nginx as reverse proxy in front of a few applications which are on the same machine(Docker containers).
As a test, I tried to connect PHPmyAdmin to a URI like: www.example.com/phpma
...
0
votes
1
answer
359
views
Apache Guacamole + Portainer + Nginx Proxy Manager + Cloudflare
maybe somebody could help with this...
My setup:
Qnap TS-664
Docker containers (Portainer managed)
Domain at porkbun (lets call it example.com)
Cloudflare DNS:
A Name: example.com
C Name: Name: nginx, ...
0
votes
0
answers
115
views
Apace Reverse Proxy to Docker Container - CSF Breaking Container App
I've been at this all day now and can't seem to figure it out.
I installed listmonk on my server and set up an Apache Reverse Proxy to it:
<VirtualHost listmonk.ygoprodeck.com:80>
ServerName ...
0
votes
0
answers
691
views
Why does nginx as a reverse proxy not send Referrer-Policy header?
A bit of context : I'm using nginx as a reverse-proxy for a bunch of apps running in Docker containers.
Among those apps there is Nextcloud (fpm), and the settings page complains about HTTP Referrer-...
0
votes
2
answers
290
views
How to serve static files for Docker Nextcloud-fpm behing nginx reverse proxy?
I have a similar problem to NextCloud FPM Docker Image behind an NGinX Docker Container as Proxy Reverse
I have multiple web apps running in Docker containers behing a Nginx reverse-proxy.
I'm trying ...
0
votes
1
answer
314
views
NGINX reverse proxy not working as expected
I'm trying to deploy an app through docker containers and reverse proxy it to my destination endpoint.
My docker compose file looks like this:
version: '3.4'
services:
monitor.api:
image: ${...
0
votes
0
answers
383
views
Docker phpMyAdmin reverse proxy using Apache - assets not loading
I am running a phpMyAdmin container that I'd like to access via Apache reverse proxy. When I try to access it, it seems like the site itself is loading, i.e. the title of the page shows "...
0
votes
1
answer
263
views
FastAPI is masking Apache2 inside Docker
I setup a webserver and a FastAPI in a single docker container.
Here are the relevant parts of the Dockerfile:
FROM ubuntu/apache2:2.4-22.04_beta
[...]
# Apache conf
RUN echo '<VirtualHost *:80>\...
0
votes
0
answers
1k
views
Dockerized Nginx Reverse Proxy - Real IP
I have following problem. I have a docker compose setup which spins up a frontend service using Nuxt3 and a backend API based on golang.This two containers are exposed via an Nginx reverse proxy ...
2
votes
1
answer
2k
views
Ngnix Reverse Proxy Setup SSL For Localhost In Docker
Using below docker compose.yml I am creating 2 containers and a reverse proxy container..
version: '3'
services:
# SSGTM Tag Server Container
tagging_server_container:
image: gcr.io/cloud-...
0
votes
0
answers
2k
views
docker registry behind nginx reverse proxy with authentication and ssl
I'm trying to push images remotely to my private docker registry, which fails like this:
$ podman push sub.example.com:5000/dummyimg sub.example.com:5000/rem/dummyimg
Getting image source signatures
...
0
votes
1
answer
260
views
Change the script path in an Apache proxy handler
I'm developing my application with 2 containers: apache and php-fpm.
Apache serves requests, and delegates PHP execution to the php-fpm container in its vhost:
<FilesMatch .php$>
...
0
votes
1
answer
828
views
NGINX proxy pass to docker container's login page [duplicate]
Using nginx, im trying to set an endpoint for /test to redirect to a docker container i have running on the network on port 5000
I gets the the page correctly, however is unable to load the necessary ...
0
votes
1
answer
799
views
Setting up SSL in Apache2 with backend docker app
I'm running Ubuntu server (18.04) on an Azure VM, with Apache2 (2.4.29). I have a backend app running in docker on the same host that is called by my site. This works easy enough without SSL. I added ...
0
votes
0
answers
337
views
Proxy apache2 to container gives 404 error
I am new to apache2 I've followed every tutorial on the internet, I think I've seen every question but it didnt help. The problem is that
My container contains flask app.
Container listens to 45654 ...
1
vote
2
answers
2k
views
nginx reverse proxy with docker containers and specific nested locations
I would like to set up nginx as a reverse proxy with multiple apps on docker containers permanently residing under specific locations, e.g.:
https://sub.example.com/wiki
https://sub.example.com/app1
...
3
votes
1
answer
3k
views
Docker NGINX reverse proxy does not work with one docker service, but works with another
I'm trying to run a service Mautic (https://hub.docker.com/r/mautic/mautic) behind NGINX reverse proxy in Docker and can't figure out what I am doing wrong.
A little preamble to introduce my setup:
...
0
votes
0
answers
5k
views
How to solve "An invalid response was received from the upstream server" on Kong Gateway?
I'm using docker with compose and I've created some microservices and I'm trying to connect them through Kong Gateway.
To access the MSs with PHP I created in Nginx the reverse proxy where I can ...
0
votes
1
answer
1k
views
Nginx blocking static files in docker-compose
I'm running docker-compose on internal port 8732, Nginx works as a proxy server, which is listening to the request from 80/443 and forwarding them to internal 8732.
The problem is the static files (....
1
vote
0
answers
3k
views
Docker and Nginx proxy for production of an angular app
I am working on an app where I am calling a 3rd party API. My API in local and production looks something like the following
1. http://localhost:8090/rest/api/2/search?jql=search_query
2. http://10....
5
votes
1
answer
25k
views
connect() failed (111: Connection refused) while connecting to upstream with static website
My goal is to have 2 docker containers:
nginx container (based on nginx:latest) to work as reverse proxy
container with static website (based on nginx:alpine)
Later I will add 1+ .net core backend ...
0
votes
0
answers
570
views
Nginx reverse proxy routes subdirectory to root location proxy path on first page visit each browser session
Short:
I have two different servers behind an nginx proxy. When I try to reach one of them I will always be redirected to the other one which is located at the root location. This happens ONCE. The ...
0
votes
1
answer
1k
views
Traefik don't keep real ip
I have a problem with Traefik, I want to log from a server with syslog-ng (docker). I have logs but I have reverse_proxy name and I want source IP not the name of traefik. I wish to keep source IP ...
0
votes
0
answers
384
views
How to reverse proxy to a container then through domain name to access the site
I set up a WordPress site with docker composer via Portainer. The site can access by the IP address.
How can I set reverses proxy and access the site by domain?
I tried to put the proxy block in the ...
0
votes
0
answers
4k
views
Conteinerized Keycloak behind Nginx reverse proxy requests localhost
Working setup
I have a configuration of
external VPS with public IP that has Nginx reverse proxy (A)
internal server with Nginx (B)
standalone application (not containerized) Keycloak 17.0.1
Which ...
1
vote
0
answers
1k
views
wordpress page, post url on nginx inside docker container automatically redirect to root domain with 301 status
I have successfully setup a wordpress site running on a dockerized nginx. When the wordpress site is up and running, I can go to the home page: https://my_domain.com or any links or at after wp-admin/....
0
votes
1
answer
3k
views
Nginx reverse proxy + URL rewrite from localhost
I would like to rewrite the URL in a reverse proxy so in my case I would like to change url like below, I ran some containers so they callable now but with port and localhost I add a new container ...
0
votes
1
answer
1k
views
wordpress post, page url redirect to local proxy_pass docker container hostname on nginx
I have successfully setup a wordpress site running on a dockerized nginx. When the wordpress site is up and running, I can go to the home page: https://my_domain.com or any links or at wp-admin/...(...
0
votes
0
answers
1k
views
wordpress nginx in docker lost css styles, js because embed file hostname in html not updated
We are trying to install wordpress on nginx on docker. The domain pointing to it is ssl enabled and when accessing the website, html is loading well but css, js, images are all lost.
The reason is ...
0
votes
1
answer
862
views
Can NOT bind host port 14433 to container port 433 using localhost, but https works using container IP (for example 172.21.0.2)
When I do lynx localhost:14080 from host, it works. The website is loaded from the container.
When I do lynx localhost:14433 from host, it does NOT work.
When I do lynx https://localhost:14433 from ...
0
votes
0
answers
569
views
Nginx: Disabling request body buffering for a dockerized project
I have Nginx 1.18 (not dockerized) to host a REST API application (running in a Docker Container) on Ubuntu 20.04, and I try to set proxy_request_buffering off to allow uploading large files with ...
4
votes
0
answers
824
views
Nginx not always serving js and css when load balancing between docker containers - works on refresh
I have Nginx set up as a reverse proxy load balancing between two docker containers running all on the same server. When loading a page for the first time, the page loads but I get lots of 404 errors ...
0
votes
1
answer
1k
views
Reverse proxy and domain forwarding [closed]
I'm trying to set up a VPS with a single IP address to run my static homepage and some additional services such as NextCloud. I already have a domain that points to the VPS's IP address. Reading ...
0
votes
0
answers
286
views
Proxy Redirect on NGINX not working as expected
I set up nginx as a reverse proxy for two proxied servers. Each of them (proxy and proxied servers) is running as a container in a docker environment. Proxied server appalpha is simply an nginx:alpine ...
2
votes
1
answer
2k
views
Get Wordpress+Apache to work behind nginx reverse-proxy
I'm trying to setup the following:
docker container with nginx on localhost as a reverse-proxy for Wordpress, listening on localhost:80. It is also used as a reverse-proxy for other microservices.
...
1
vote
0
answers
310
views
nginx local reverse proxy with firewalld
I am running a service on a docker container.
The service is exposed on a given port (eg. 12345).
On top of it I added a nginx reverse proxy to get extra functionality like HTTPS and HTTP/2.
nginx ...
0
votes
0
answers
125
views
On a Debian 10 instance running multiple Docker containers to serve a web application, reverse proxy a URL path to another port
This might be an easy one for experienced folks out there but I am stuck.
On a debian 10 machine, I got several containers running to serve a web application ✔
I also have a mailhog server to provide ...
2
votes
1
answer
1k
views
Docker: Isolate compose stacks on network level, while allowing a single service to be reverse proxied by Traefik
I'm trying to secure containers on my homelab.
The main goal is:
isolating nginxA and nginxB, so they are not able to talk to each other via 172.17.0.1 (eg. preventing nginxA from reaching nginxB via ...
4
votes
0
answers
5k
views
Nginx Docker Container stops working irregularly
The server:
I use Nginx as a ingress-proxy for my server. Nginx runs within a Docker container.
docker-compose.yml:
nginx_ingress:
image: nginx:latest
ports:
- "80:80"
- ...
0
votes
1
answer
4k
views
HAProxy - Cannot chroot /var/lib/haproxy
I am trying to run haproxy in docker by following this article from the haproxy blog. https://www.haproxy.com/blog/haproxy-on-docker-swarm-load-balancing-and-dns-service-discovery/
I am getting the ...
1
vote
1
answer
773
views
Docker+Synapse+Traefik v2 stops working when I make a separate backend network
I'm trying to set up a Matrix Synapse server using Docker and a Traefik v2 reverse proxy.
My setup works if I define a single network in my docker-compose file and have Traefik, Synapse and postgres ...
1
vote
2
answers
979
views
Use multiple dockerized Nginx behind a host Nginx
I have multiple and different dockerized applications, each one comes with its proper Nginx service which sends traffic to its containers based on some rules.
I need to put those applications on the ...
0
votes
2
answers
5k
views
Using apache reverse proxy to send all requests for /blog to internal wordpress server
I have a website written in react, and now I wanted to add a blog section to the site. The blog is going to be based on wordpress.
The react app runs in a docker container, and I use the wordpress ...
0
votes
1
answer
629
views
Create a containerized reverse proxy with multiple sites on a separate IP Address
I administer a small cluster which has several different services running, including grafana monitoring as a container, cloud file storage as a container (nextcloud), and a FreeIPA server on bare ...
1
vote
2
answers
2k
views
Reverse Proxy to local container
I need run Kafka on docker with web UI on some specific domain AND LINK, for example:
http://somesite.com/kafka
I am using this docker-compose.yml.
version: '3.3'
services:
zookeeper:
image: '...
1
vote
1
answer
3k
views
Docker with Traefik reverse proxy under Synology DSM 7 // free port 80 and 443
To run docker with the reverse proxy Traefik v2 on a Synology NAS, I need to be able to use port 80 and 443 on the host system. The Operation System of the NAS DSM uses its own reverse proxy, nginx, ...
0
votes
1
answer
3k
views
Using Reverse Proxy Nginx in a docker container
So trying to setting Nginx as a reverse proxy using docker - I have three node js containers (one frontend and two backend services) the frontend service calls the two backend services. So I want ...
0
votes
1
answer
1k
views
Nginx handle SSL and proxy pass to HTTP backend in docker but tries to keep serving local content
I try to set up a docker-compose environment in which a Nginx container receives HTTPS requests, handles the SSL and reverse proxies them to a dotnet-core app which only implements HTTP.
This topic ...