Connection refused when requesting new cerfificate via script - possible hangover of previous redirects?

OK, yeah that makes sense. I'm at a total loss of what to do now!

Yes, it's running. I'm currently back to running this nginx:

  nginx:
    image: nginx:1.19
    volumes:
      - ./data/nginx/templates:/etc/nginx/templates
      - ./data/certbot/conf:/etc/letsencrypt
      - ./data/certbot/www:/var/www/certbot
      - ./reload.sh:/docker-entrypoint.d/reload.sh
    ports:
      - "80:80"
      - "443:443"
    env_file: .env

Then:
docker-compose up -d nginx

docker ps
CONTAINER ID   IMAGE        COMMAND                  CREATED         STATUS         PORTS                                      NAMES
81da6cee9527   nginx:1.19   "/docker-entrypoint.…"   4 seconds ago   Up 2 seconds   0.0.0.0:80->80/tcp, 0.0.0.0:443->443/tcp   collabora_nginx_1

The ports on the container map to that of host on 443 and 80.

I don't know where to go next from here :confused:

1 Like