File tree Expand file tree Collapse file tree 1 file changed +27
-3
lines changed Expand file tree Collapse file tree 1 file changed +27
-3
lines changed Original file line number Diff line number Diff line change 11# Instructions: https://readthedocs.org/projects/certbot-dns-transip/
2- # Convert the key to an RSA key (openssl rsa -in transip.key -out transip-rsa.key)
3- # Place .key-file in the same directory as this file. Location "/config/dns-conf" is from within the container
2+ #
3+ # This DNS plugin can be used to generate SSL wildcard certificates via TransIP DNS TXT records
4+ #
5+ # Login with your TransIP account and go to My Account | API:
6+ # 1. API-settings: On
7+ #
8+ # 2. IP-address/ranges whitelist: Add a new authorized IP address (Swag Docker) to use the API
9+ #
10+ # 3. Generate a new Key Pair and copy the private key to a new transip.key file in the format:
11+ # -----BEGIN PRIVATE KEY-----
12+ # ...
13+ # -----END PRIVATE KEY-----
14+ #
15+ # 4. Convert the key to an RSA key with command:
16+ # openssl rsa -in transip.key -out /config/dns-conf/transip-rsa.key
17+ #
18+ # 5. Set permission
19+ # chmod 600 /config/dns-conf/transip-rsa.key
20+ #
21+ # 6. Replace <transip_username> below with your TransIP username
22+ #
23+ # 7. Create wildcard certificate with Swag environment variables:
24+ # SUBDOMAINS=wildcard
25+ # VALIDATION=dns
26+ # DNSPLUGIN=transip
427
528dns_transip_username = <transip_username>
6- dns_transip_key_file = /config/dns-conf/transip-rsa.key
29+ dns_transip_key_file = /config/dns-conf/transip-rsa.key
30+
You can’t perform that action at this time.
0 commit comments