I am trying to run a WordPress site inside of a docker container on Ubuntu VPS using Nginx-Proxy.
I created the following docker-compose.yml file
version: '3.4'
services:
nginx-proxy:
image: jwilder/nginx-proxy
container_name:…
The documentation is not clear to me, as well as this is my first deployment
I keep getting error as 502 because of no live upstream.
This is the code.
docker.staging.yml
version: '3.8'
networks:
public_network:
name: public_network
…
I installed Azuracast to my VPS and also installed Wordpress for my website. Both installed very nicely using Docker and the install instructions Azuracasts documentation provided. Now my only problem is that I am unable to upload the theme I…
I hope you are well and healthy. I have deployed a docker-compose file that contains nginx-proxy used with letsencrypt for a multi-container multi-project deployment on a single VPS. However, it becomes quite impractical especially given that the…
I want to protect my reverse proxy server with basic authentication support. According to the [read-me][1] I have added -v /path/to/htpasswd:/etc/nginx/htpasswd to my docker-compose file:
version: '2'
services:
frontproxy:
image:…
I am building my nginx configuration with automated tools like nginx-proxy on docker. There they let me add a custom line inside the location directive.
Simply, I want www.example.com to be 301 redirected to example.com, or generally both…
I am trying to setup an keycloak instance with an ssl connection over an nginx proxy my 'docker ps' output:
d7fd473cc77b jboss/keycloak "/opt/jboss/tools/do…" 34 minutes ago Up 8 minutes …
The issue is: php files are downloaded instead of executing.
I know there are some other similar questions out there to this one. I read many of them but either their scenerios are different or they have no correct answers. I have spent days and…
I am trying to use nginx-proxy with Docker Swarm mode. I have a stack for nginx-proxy and a stack for a whoami container which is replicated 3 times.
THe problem is that when I query the cluster, I always get response from the same whoami. When I…
My problem is similar to this one, which is apparently unsolved to this day :/
I was following this tutorial to setup my Theia IDE, the IDE is working but I want my 8080 port to be open for testing out the node.js backend I host on the Theia IDE…
I am a bit stuck with configuring multiple services where nginx is the proxy server.
running :
docker -v
Docker version 19.03.8, build afacb8b7f0
docker-compose -v
docker-compose version 1.23.2,…
I am trying to access phpMyAdmin behind nginx-proxy Docker image, hosted on my VPS.
When I try login in phpMyAdmin, I get the error: php_network_getaddresses: getaddrinfo failed: Name or service not known
The docker-compose file is:
version:…
I just successfully dockerized my seafile installation and now want to put that behind a reverse proxy because I would like to host multiple services. However, I'm getting "Bad Gateway" from nginx and can't figure out what the problem might be.
This…
I'm trying to serve multiple containers with a static index.html file with a nginx reverse proxy
I've tried to follow the documentation here to create a default location
location / {
root /app;
index index.html;
try_files $uri $uri/…
I have a NAS behind a router. On this NAS I want to run for testing Nextcloud and Seafile together. Everything should be set up with docker. The jwilder/nginx-proxy container does no work as expected and I cannot find helpful information. I feel I…