-
Notifications
You must be signed in to change notification settings - Fork 8
Description
hi,
I'm getting this error while trying to use this container. I don't really need ssl at the moment but my understanding is that it is automatically generated anyway so there shouldn't be any problem.
I'm using docker compose, and the section related to this container is the following:
` nginx-proxy:
image: nginxproxy/nginx-proxy
image: mesudip/nginx-proxy
container_name: nginx-proxy
restart: always
networks:
- monitoring
ports:
- "80:80"
- "443:443"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- DEFAULT_HOST=opf-sv
- PROXY_DEFAULT_SERVER=true
depends_on:
- loki
- grafana`
while these are the logs I have for the nginx container:
Generating DH parameters, 2048 bit long safe prime, generator 2 2025-04-10T13:46:26.065684935Z This is going to take a long time 2025-04-10T13:46:43.143177166Z ..................................+.....................+.....................................................................................................................+........+.............................................................................................................................+................................+..........................................+....................................................+....................................................................................................+...................+...........................................................................................+.....+....................................................+.....................................+....................................................................................................................+..........+..+.....+..........................................................................................................................................................................................+.......................+.............................................................................................................................................................................................................+............................................................................+...............................................+.....................................+..............................................................+..................+.....................................+.........................................................................................................................................................+.............................................................................................................................................+.....................................................................................................+.......................................+...............+.................................................................................................................................+.....................+.................................................................................................................................+..............................................................................................................................................................................................+.............+........................................................................................................................................................+...........................+.........................................................................................................................................................+....+.........................+..............................................................................................................................................+......+................................................+.......................................+...+...........................................................................................+.........................................................................................................................................................................+...+...........................................................................................................................+................................................+...........................................................................+.............................................................+................................................................................................................................................................................................................................+.........................................................................................+.........................+....+..........................................+.........................................................+..............................................................................+..............................................................................................+........................................................................................+............................+...................................+.....................+...............................+.......................................................................................+..........+..............................................+........................................................................................................................................................................................................................+.........+...........................................................++*++*++*++* 2025-04-10T13:46:43.612619884Z Check known network: operation-preparation-facility_monitoring 2025-04-10T13:46:43.615895804Z Using letsencrypt url : https://acme-v02.api.letsencrypt.org/directory 2025-04-10T13:46:43.636692979Z Nginx is alive 2025-04-10T13:46:43.636734694Z Reachable Networks : {'bb4fcf2899960a29b0c93629b7198f5fbc0fd85d41534804cbb61cc57d27f721': 'operation-preparation-facility_monitoring', 'operation-preparation-facility_monitoring': 'bb4fcf2899960a29b0c93629b7198f5fbc0fd85d41534804cbb61cc57d27f721'} 2025-04-10T13:46:43.660856214Z No VIRTUAL_HOST Id:c90fa03a7519 nginx-proxy 2025-04-10T13:46:43.660877397Z No VIRTUAL_HOST Id:55b4f2a8f721 operation-preparation-facility-whoami-1 2025-04-10T13:46:43.660881396Z No VIRTUAL_HOST Id:1d90196b7912 operation-preparation-facility-postgres-opf-1 2025-04-10T13:46:43.660884588Z No VIRTUAL_HOST Id:1f5f46ed0a1f operation-preparation-facility-alloy-1 2025-04-10T13:46:43.660887562Z No VIRTUAL_HOST Id:782449f3f18d operation-preparation-facility-mimir-1 2025-04-10T13:46:43.660923441Z No VIRTUAL_HOST Id:88f7d3ae7c31 operation-preparation-facility-minio-opf-1 2025-04-10T13:46:43.661068123Z Valid configuration Id:705ab76068c1 operation-preparation-facility-grafana-1 2025-04-10T13:46:43.661399463Z - http://opf-sv/ 2025-04-10T13:46:43.661408884Z -> http://172.18.0.6:3000 2025-04-10T13:46:43.661412575Z Valid configuration Id:fde1cad78330 operation-preparation-facility-loki-1 2025-04-10T13:46:43.661422145Z - ws://opf-sv/ 2025-04-10T13:46:43.661426065Z -> http://172.18.0.8:3100 2025-04-10T13:46:43.661428894Z No VIRTUAL_HOST Id:94b5b5e64680 operation-preparation-facility-tempo-1 2025-04-10T13:46:43.672738563Z Nginx Reloaded Successfully 2025-04-10T13:46:43.673830116Z [SSL Refresh Thread] Looks like there no ssl certificates, Sleeping until there's one
thanks for your help!