NginxProxyManager / nginx-proxy-manager

Docker container for managing Nginx proxy hosts with a simple, powerful interface
https://nginxproxymanager.com
MIT License
22.6k stars 2.62k forks source link

Porkbun API Change #4061

Closed armin771 closed 3 days ago

armin771 commented 1 week ago

I just received an email from porkbun saying that they are changing their hostname for the API. It may be important for the dns challenge provider function in the SSL Certificates menu.

CRITICAL UPDATE DETAILS

Type: API Hostname Change

Old Value: porkbun.com

New Value: api.porkbun.com

Deadline: 2024-12-01 00:00:00 UTC
swipesomething commented 5 days ago

I also received this email and it seems my certificate won't update anymore as a result of this change

Guiorgy commented 4 days ago

Pretty sure certificate management is done through certbot, which is a Python package. This repo doesn't have any mention of the Porkbun URL, it seems to just installs the certbot plugin for the selected DNS providers through pip and delegates the tasks to them:

const cmd = '. /opt/certbot/bin/activate && pip install --no-cache-dir ' + plugin.dependencies + ' ' + plugin.package_name + plugin.version + ' ' + ' && deactivate';

This should probably be reported upstream instead.

This has already been reported to the upstream, so just wait for it to be updated.

armin771 commented 3 days ago

@Guiorgy Thank you very much for the clarification.