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
cdmon.com, they are an Spanish domain and DNS provider and offer free DNS services. I've created the certbot plugin, tested, and deployed as a pip package, after some weecknds working on it ;D
I tried to compile the image, but I don't know why it doesn't appear in the compiled image after modifying and recompiling via docker compose (maybe it is necessary to rebuild frontend?).
Thank you very much!!!
The text was updated successfully, but these errors were encountered:
In the end I was able to test it when recompiling the frontend, I just had to execute the script that is already enabled (after some research I found it).
sudo ./scripts/ci/frontend-build
Then create a docker-compose.yml with
services:
app:
build:
# Specifies the path to the directory containing the Dockerfile and source codecontext: ${REPO_PATH}/nginx-proxy-manager# Specifies the path to the Dockerfile RELATIVE to the context abovedockerfile: docker/Dockerfilerestart: unless-stoppedports:
# These ports are exposed on your host machine.
- '80:80'# HTTP traffic
- '81:81'# Admin interface
- '443:443'# HTTPS trafficvolumes:
# These volumes persist data outside the container.# Ensure these paths (./data, ./letsencrypt) exist where you run docker-compose# or use absolute paths if preferred.
- ${DATA_PATH}/data:/data # NPM data (configurations, users, etc.)
- ${LETS_ENCRYPT_PATH}/letsencrypt:/etc/letsencrypt # Let's Encrypt certificates
sudo docker compose up -d --build
When testing it, I saw that the plugin had a bug that I have corrected and I have updated to version 0.4.1
What provider would you like to see added to NPM?
cdmon.com, they are an Spanish domain and DNS provider and offer free DNS services. I've created the certbot plugin, tested, and deployed as a pip package, after some weecknds working on it ;D
Have you checked if a certbot plugin exists?
Yes, certbot exists as a pip package
https://pypi.org/project/certbot-dns-cdmon/
And here is the git directory
https://github.com/rascazzione/certbot-dns-cdmon
I've prepared the data for certbot-dns-plugins.json
I tried to compile the image, but I don't know why it doesn't appear in the compiled image after modifying and recompiling via docker compose (maybe it is necessary to rebuild frontend?).
Thank you very much!!!
The text was updated successfully, but these errors were encountered: