.localhostcert.net {
tls {
dns acmedns credentials.json
}
respond "Hello"
}
See full example
We're laser focused on making it easier to get a globally valid HTTPS certificate you can use within your private network. getlocalcert offers free subdomains which are suitable for hosting internal applications. The managed DNS service is compatible with Let's Encrypt, allowing issuance of free certificates. Read more about our security-first and developer-friendly design.
Modern, all-in-one web server
.localhostcert.net {
tls {
dns acmedns credentials.json
}
respond "Hello"
}
See full example
Cloud-native application proxy
certificatesResolvers:
myresolver:
acme:
dnsChallenge:
provider: acme-dns
See full example
Certificate automation for Kubernetes
apiVersion: cert-manager.io/v1
kind: Issuer
metadata:
name: example-issuer
spec:
acme:
solvers:
- dns01:
acmeDNS:
host: https://api.getlocalcert.net/api/v1/acme-dns-compat
accountSecretRef:
name: acme-dns
key: credentials.json
See full
example
Get started quickly
$ export ACMEDNS_BASE_URL=https://api.getlocalcert.net/api/v1/acme-dns-compat
$ export ACMEDNS_USERNAME=yourApiKeyId
$ export ACMEDNS_PASSWORD=yourApiKeySecret
$ export ACMEDNS_SUBDOMAIN=yoursubdomain
$ ./acme.sh --issue \
--dns dns_acmedns \
-d yoursubdomain.localhostcert.net
See full example
A client build by Let's Encrypt
$ export ACME_DNS_API_BASE=https://api.getlocalcert.net/api/v1/acme-dns-compat
$ export ACME_DNS_STORAGE_PATH=credentials.json
$ lego --email [email protected] \
--dns acme-dns \
--domains yoursubdomain.localhostcert.net \
run
See full example
Manage certificates on Windows and IIS
1. Select acme-dns as the DNS update method.
2. Enter https://api.getlocalcert.net/api/v1/acme-dns-compat as the server
3. Click Request Certificate
4. Skip the CNAME step, you won't need it
See full
example