-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Closed as not planned
Description
Error in jc21/nginx-proxy-manager:latest
Describe the bug
When i want to create a SSL Certificate in the frontent I get following error:
Error: Command failed: certbot certonly --config "/etc/letsencrypt.ini" --cert-name "npm-10" --agree-tos --authenticator webroot --email "a.pernkopf@aikq.at" --preferred-challenges "dns,http" --domains "owncloud.mydomain.example" Saving debug log to /var/log/letsencrypt/letsencrypt.log An unexpected error occurred: PermissionError: [Errno 1] Operation not permitted: '../../archive/npm-10/cert1.pem' -> '/etc/letsencrypt/live/npm-10/cert.pem' Ask for help or search for solutions at https://community.letsencrypt.org. See the logfile /var/log/letsencrypt/letsencrypt.log or re-run Certbot with -v for more details. at ChildProcess.exithandler (node:child_process:399:12) at ChildProcess.emit (node:events:526:28) at maybeClose (node:internal/child_process:1092:16) at Process.ChildProcess._handle.onexit (node:internal/child_process:302:5)
Nginx Proxy Manager Version
v2.9.18
Additional context
I tried to chmod 755 /etc/letsencrypt/live/ with no avail
Docker-compose file:
version: '3' services: app: container_name: "Nginx" image: 'jc21/nginx-proxy-manager:latest' restart: unless-stopped ports: - '80:80' - '81:81' - '443:443' volumes: - ./data:/data - ./letsencrypt:/etc/letsencrypt