-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Description
Hello,
I installed Docker for mac OSX (i7)
I run NPM, then in the administration interface on port 81 when I want to request the creation of a certificate I have an error (Internal Error) and these few lines that I was able to get in the log.
app_1 | [7/30/2021] [12:12:50 PM] [Express ] › ⚠ warning Command failed: certbot certonly --non-interactive --config "/etc/letsencrypt.ini" --cert-name "npm-12" --agree-tos --email "email@gmail.com" --preferred-challenges "dns,http" --domains "test.domaine.com"
app_1 | Saving debug log to /var/log/letsencrypt/letsencrypt.log
app_1 | Some challenges have failed.
The same with W10 works perfectly.
An idea ? I did not find anything on google...
Ports 80 and 443 are redirected.
Email and domain have been changed by will on this place.
I just tried on two anothers mac os (i7) and got the same error.
No /var/log/letsencrypt/letsencrypt.log created :(
Thank you
services:
app:
image: 'jc21/nginx-proxy-manager:latest'
restart: unless-stopped
ports:
- '80:80'
- '81:81'
- '443:443'
environment:
DB_MYSQL_HOST: "db"
DB_MYSQL_PORT: 3306
DB_MYSQL_USER: "npm"
DB_MYSQL_PASSWORD: "npm"
DB_MYSQL_NAME: "npm"
volumes:
- ./data:/data
- ./letsencrypt:/etc/letsencrypt
db:
image: 'jc21/mariadb-aria:latest'
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: 'npm'
MYSQL_DATABASE: 'npm'
MYSQL_USER: 'npm'
MYSQL_PASSWORD: 'npm'
volumes:
- ./data/mysql:/var/lib/mysql