Questions tagged [jwilder-nginx-proxy]

Questions related to the jwilder/nginx-proxy docker image

The jwilder/nginx-proxy docker image

186 questions
1
vote
0 answers

Containerized webservices with nginx-proxy / acme-companion on a single VPS

What I have : a VPS with an its IPV4 IPADRESS and a valid domain name binded to it with an A record in my provider DNS control panel. Lets call my domain name : mydomain.com and my IPV4 ip adress denoted as IPADRESS for debugging purposes. What I…
ar_ma_cs
  • 11
  • 2
1
vote
0 answers

Nginx redirect issue which has query string and special characters

We have configured Nginx web server for our project. We have a requirement to redirect the url which has query string and special characters. Below is the URL. localhost/searchPage.action?keyWord=line%20cards&overRideCatId=N We tried 301 redirect…
1
vote
1 answer

jwilder/nginx-proxy:latest cause nginx proxy 500 for https

I am trying to use jwilder/nginx-proxy:latest for proxy reverse. Here is my docker-compose.yml, it works for http, but failed fot https. When access https://web.test.cn, it return 500 error. version: '3.9' services: test-proxy: image:…
Edward
  • 28,296
  • 11
  • 76
  • 121
1
vote
0 answers

client_max_body_size not taking effect

I am currently an application with the following components, all running in docker containers on an AWS server: angularJs nodeJS nginx (using jwilder/nginx-proxy image) letsencrypt (using jrcs/letsencrypt-nginx-proxy-companion:v1.12 image) The…
1
vote
0 answers

Why running laravel app under jwilder/nginx-proxy I got 503 Service Temporarily Unavailable error?

Running laravel project based on jwilder/nginx-proxy I got error in browser 503 Service Temporarily Unavailable nginx/1.21.1 with url: http://127.0.0.1:80 Running docker and checking containers in my OS I see : $ docker-compose up…
mstdmstd
  • 2,195
  • 17
  • 63
  • 140
1
vote
0 answers

docker-compose running nginx-proxy and mailu as mailserver error

i hope someone can help me here. I am creating a linux Setup for my server. I need vhosts and only want to use docker-compose to have better track of security and setup and to easily restart and add new container. For vhosting and ssl i use…
Max11251
  • 31
  • 2
1
vote
0 answers

Use jwilder-nginx-proxy without mounting docker socket

I'm trying to follow guidelines of docker-bench-security. I'm trying to comply with this rules : Ensure the Docker socket is not mounted inside any containers. I've read that jwilder-nginx-proxy does not need docker socket to me mounted if it can…
aschaeffer
  • 31
  • 4
1
vote
0 answers

How can I run wordpress docker-image using nginx-proxy?

I am trying to run a WordPress app inside of a docker container on Ubuntu VPS using Nginx-Proxy. First I run the nginx-proxy server using the following command docker run -d \ -p 80:80 \ -p 443:443 \ --name proxy_server \ --net nginx-proxy-network…
Jay
  • 1,168
  • 13
  • 41
1
vote
1 answer

docker reverse proxy : can't get jwilder/nginx reverse proxy work with serveral bridge networks

I'm trying to have several website on a single VPS (based on prestashop) and am using docker to manage the whole thing. VPS is running DEBIAN 10. I first have a jwilder/nginx-proxy container, here is the docker-compose.yml: version:…
Ben
  • 149
  • 1
  • 6
1
vote
0 answers

mailcow + jwilder reverse proxy

I try to set up my own mailserver, Mailcow was recommended. DNS-provider: Cloudflare with CNAME mail.examle.com => examle.com, proxied Because it is proxies, I cannot use normal ports like mentioned in the docs. Therefore I have to setup some…
1
vote
0 answers

nginx SSL certificate name does not match input

I am setting up applications on multiple subdomains on the same server - subdomain1.abc.def.com, subdomain2.abc.def.com and such. My applications are containers. I have setup a reverse proxy on my server using nginx-proxy. The server hostname is…
sradhakrishna
  • 99
  • 1
  • 5
1
vote
1 answer

Why nginx are required to be run on docker sometimes?

I'm learning about docker and nginx(jwilder/nginx-proxy, ...). During configurations, I couldn't figure the reason out why I should install nginx on docker. AFAIK, It is possible to access containers using their exposed ports and only one nginx on…
overfit
  • 349
  • 1
  • 12
1
vote
1 answer

Adding CORS header in nginx-proxy appends the value rather than overrides it

I'm trying to add a cors header using nginx proxy Docker container https://github.com/jwilder/nginx-proxy. I've create a config file containing the line: add_header 'Access-Control-Allow-Origin' '*' always I've used a volume to pass this in through…
Ben Gannaway
  • 1,053
  • 1
  • 14
  • 28
1
vote
0 answers

Getting 500 error with self signed certificate

I 'am trying to get to run two services in a docker environment. One is an Angular application and the other is my small python server. I have added the jwilder nginx reverse proxy for authentication and ssl configuration with my self signed…
1
vote
0 answers

Upstream issue Docker-NGINX / Pinging Containers

I need some help for solving a problem with Docker Network and accessing containers among themselves. First let me tell you about my simple docker environment based on Ubuntu and a native installed Docker environment. I have created an extra…