You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have you pulled and found the error with jc21/nginx-proxy-manager:latest docker image?
Yes
Are you sure you're not using someone else's docker image?
Yes
Have you searched for similar issues (both open and closed)?
Yes
Describe the bug
can be seen in the log below
Nginx Proxy Manager Version
2.11.3
To Reproduce
Steps to reproduce the behavior:
Go to certs
Click on new cert
use cloudflare
click ok
Expected behavior
new cert
Screenshots
CommandError: nginx: [emerg] cannot load certificate "/etc/letsencrypt/live/npm-16/fullchain.pem": BIO_new_file() failed (SSL: error:80000002:system library::No such file or directory:calling fopen(/etc/letsencrypt/live/npm-16/fullchain.pem, r) error:10000080:BIO routines::no such file)
nginx: configuration file /etc/nginx/nginx.conf test failed
at /app/lib/utils.js:16:13
at ChildProcess.exithandler (node:child_process:430:5)
at ChildProcess.emit (node:events:519:28)
at maybeClose (node:internal/child_process:1105:16)
at Socket. (node:internal/child_process:457:11)
at Socket.emit (node:events:519:28)
at Pipe. (node:net:338:12)
Operating System
raspbian latest
Additional context
The text was updated successfully, but these errors were encountered:
Had the same issue. Turns out this is caused by proxy hosts I had which were still trying to load the SSL which was deleted. Was able to resolve it with:
entered the container for nginx-app-1 docker exec -it nginx-app-1 bash
recreated the folder in /etc/letsencrypt/live that was missing (in my case /npm3) mkdir /etc/letsencrypt/live/npm-3
copied files from another live SSL cp /etc/letsencrypt/live/npm-5/fullchain.pem /etc/letsencrypt/live/npm-3/fullchain.pem cp /etc/letsencrypt/live/npm-5/privkey.pem /etc/letsencrypt/live/npm-3/privkey.pem
Exit container exit
Restart your container docker compose restart
(if using docker compose and currently in the directory containing your docker compose file)
After that I was able to access the webui and remove the proxy hosts that were causing the issue. Remember to go back and clean up the files you created previously.
Checklist
jc21/nginx-proxy-manager:latest
docker image?Describe the bug
can be seen in the log below
Nginx Proxy Manager Version
2.11.3
To Reproduce
Steps to reproduce the behavior:
Expected behavior
new cert
Screenshots
Operating System
raspbian latest
Additional context
The text was updated successfully, but these errors were encountered: