Questions tagged [letsencrypt-nginx-proxy-companion]

11 questions
2
votes
2 answers

Docker rootless Error: you need to share your Docker host socket with a volume at /var/run/docker.sock

I am trying to go rootless with Docker. I have followed all the steps presented in the official documentation. I also allowed the use of the unprivileged ports, to include the 443. To test if everything works the way I need it, I installed the…
Pathros
  • 10,042
  • 20
  • 90
  • 156
1
vote
0 answers

nginx : add three extras server in the existing config

This is my nginx config with one server and I 'd like to add three extra server with same settings, certificate and to replace ip address. # odoo server upstream odoo15.0 { server 192.168.0.101:8069; } upstream chat_odoo15.0 { server…
1
vote
2 answers

Docker-Compose.yml with GITLAB_OMNIBUS_CONFIG not working

Sorry if this is a duplicate question––I found similar issues but none seemed to be my exact use case... If I missed something mentioning a link would be highly appreciated. I am trying to compose a docker stack with frontproxy, acme-companion and…
1
vote
1 answer

Docker jrcs/letsencrypt-nginx-proxy-companion doesn't generate a proper certificate

I'm following a tutorial to deploy Wordpress using Docker on a Ubuntu server. The tutorial is in this website. It's important to mention that I already have two subdomains at this point, one for the Wordpress site and another for the phpMyAdmin…
0
votes
1 answer

Cant setup iredmail behind existing jwilder-nginx-proxy ERR_TOO_MANY_REDIRECTS 301 Moved Permanently

This is my first time to setup iredmail. Am very happy to find this Group and really hope I will get some useful answers. Has someone here ever succeed to setup iredmail/mariadb:stable behind an existing nginx jwilder/docker-gen reverse proxy…
0
votes
0 answers

Problem in nginx "503 Service Temporarily Unavailable"

i have docker running and nginx and my application running in seprate containers. im also using LetsEncrypt. \ and i cant figure out what it is. Nginx proxy- docker-compose.yaml version: '3.5' services: nginx-proxy: image:…
0
votes
0 answers

failed to solve: rpc error: code = Unknown desc = failed to solve with frontend dockerfile.v0: failed to read dockerfile

I am Implementing a containerized nextcloud application with a self signed cert using the example docker compose file provided here:…
0
votes
0 answers

where can i see the acme-challenge token

I have docker containers up and my jrcs/letsencrypt-nginx-proxy-companion does not show me or generate the token, how can I see or generate the token, then create my _acme-challange txt file. letsencrypt: container_name:…
0
votes
1 answer

Problem with setting up a stack nginx proxy manager using portainer on my home server

I had this error while trying to setup a nginx proxy manager container using portainer, portainer started without problems error: Recreating 3167b8f95097_nginxproxy_db_1 ... [1A[2K Recreating 3167b8f95097_nginxproxy_db_1 ... [31merror[0m [1B ERROR:…
0
votes
0 answers

Docker-Compose stack with jwilder/nginx-proxy and nginxproxy/acme-companion produces cert with wrong common name

I expect the docker-compose.yml below to create a cert with the common name dev.redacted.com, but the cn is letsencrypt-nginx-proxy-companion–and I do not understand why, as I specify the CERT_NAME in the service I'd like to bring up. Any…
0
votes
0 answers

Letsencrypt, nginx-proxy wordpress and docker issue

I needed to host multiple domains, so I followed this blog: https://www.datanovia.com/en/lessons/how-host-multiple-https-websites-on-one-server/ with the following configuration for my nginx-proxy: version: '3' services: nginx: image:…