Skip to content

Commit 5bf774b

Browse files
authored
Merge branch 'develop' into develop-certbot-dns-transip
2 parents bd0324d + 9951446 commit 5bf774b

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ pipeline {
222222
always {
223223
sh 'docker-compose down --rmi all --remove-orphans --volumes -t 30'
224224
sh 'echo Reverting ownership'
225-
sh 'docker run --rm -v $(pwd):/data ${DOCKER_CI_TOOLS} chown -R $(id -u):$(id -g) /data'
225+
sh 'docker run --rm -v $(pwd):/data jc21/ci-tools chown -R $(id -u):$(id -g) /data'
226226
}
227227
success {
228228
juxtapose event: 'success'

docs/advanced-config/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ NPM has the ability to include different custom configuration snippets in differ
132132
You can add your custom configuration snippet files at `/data/nginx/custom` as follow:
133133

134134
- `/data/nginx/custom/root.conf`: Included at the very end of nginx.conf
135+
- `/data/nginx/custom/http_top.conf`: Included at the top of the main http block
135136
- `/data/nginx/custom/http.conf`: Included at the end of the main http block
136137
- `/data/nginx/custom/stream.conf`: Included at the end of the main stream block
137138
- `/data/nginx/custom/server_proxy.conf`: Included at the end of every proxy server block

global/certbot-dns-plugins.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,5 +311,14 @@ dns_eurodns_endpoint = https://rest-api.eurodns.com/user-api-gateway/proxy`,
311311
credentials: `certbot_dns_transip:dns_transip_username = my_username
312312
certbot_dns_transip:dns_transip_key_file = /etc/letsencrypt/transip-rsa.key`,
313313
full_plugin_name: 'certbot-dns-transip:dns-transip',
314+
//####################################################//
315+
acmedns: {
316+
display_name: 'ACME-DNS',
317+
package_name: 'certbot-dns-acmedns',
318+
package_version: '0.1.0',
319+
dependencies: '',
320+
credentials: `certbot_dns_acmedns:dns_acmedns_api_url = http://acmedns-server/
321+
certbot_dns_acmedns:dns_acmedns_registration_file = /data/acme-registration.json`,
322+
full_plugin_name: 'certbot-dns-acmedns:dns-acmedns',
314323
},
315324
};

0 commit comments

Comments
 (0)