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
Copy file name to clipboardexpand all lines: docs/getting-started/using-https.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -69,30 +69,30 @@ services:
69
69
70
70
## Obtaining Certificates
71
71
72
-
Valid server certificates can be obtained either from a commercial [Certification Authority](https://en.wikipedia.org/wiki/Certificate_authority) (CA) or free of charge from [Let's Encrypt](https://letsencrypt.org/):
72
+
Valid server certificates can be obtained either from a commercial [Certification Authority](https://en.wikipedia.org/wiki/Certificate_authority) (CA) like [ZeroSSL](#zerossl) or free of charge from [Let's Encrypt](#lets-encrypt):
Let's Encrypt is an automatic certificate authority that you can use free of charge. Many web servers and reverse proxies such as [Traefik](proxies/traefik.md) and [Caddy](proxies/caddy-2.md) have integrated support for obtaining single-domain certificates if your server is accessible on port 80 over the public Internet.
77
+
[Let's Encrypt](https://letsencrypt.org/) is an automatic certificate authority that provides you with free HTTPS/TLS certificates. Many web servers and reverse proxies such as [Traefik](proxies/traefik.md) and [Caddy](proxies/caddy-2.md) have integrated support for obtaining single-domain certificates if your server is accessible on port 80 over the public Internet.
78
78
79
-
The creation of certificates for servers that are not publicly reachable or that are valid for all subdomains (wildcard) is alternatively possible with the [LEGO Let's Encrypt client](https://go-acme.github.io/lego/usage/cli/obtain-a-certificate/). If you use Docker and [DigitalOcean's free DNS service](https://m.do.co/c/f9725a28bb6b), the [command to run](https://go-acme.github.io/lego/usage/cli/obtain-a-certificate/) would look as follows (replace domain, access token and email):
79
+
The creation of certificates for servers that are not publicly reachable or that are valid for all subdomains (wildcard) is alternatively possible with the [LEGO Let's Encrypt client](https://go-acme.github.io/lego/usage/cli/obtain-a-certificate/). If you use Docker and [DigitalOcean's free DNS service](https://m.do.co/c/f9725a28bb6b), the [command to run](https://go-acme.github.io/lego/usage/cli/obtain-a-certificate/) would look as follows (replace certificate path, access token, domain name, and email):
80
80
81
81
```bash
82
-
docker run --rm -v "/photoprism/storage/config/certificates:/data/" \
82
+
docker run --rm -v "/path/to/certificates:/data/" \
83
83
-e DO_AUTH_TOKEN=YOUR_ACCESS_TOKEN goacme/lego -a --path=/data \
Note that for this to work, you will need a [supported DNS provider](https://go-acme.github.io/lego/dns/) to verify the ownership of your domain. Please [refer to the LEGO documentation](https://go-acme.github.io/lego/dns/) for details, as each provider has a different authentication method. If you are [using DigitalOcean](https://m.do.co/c/f9725a28bb6b), you can create the required access token in your customer dashboard.
88
+
Note that this verification method only works if you use a [supported DNS provider](https://go-acme.github.io/lego/dns/) that LEGO can access through an API. Please refer to [its documentation](https://go-acme.github.io/lego/dns/) for details, as each provider requires different authentication credentials. If you are [using DigitalOcean](https://m.do.co/c/f9725a28bb6b), you can create the required access token in [your customer dashboard](https://cloud.digitalocean.com/account/api/tokens) and replace `YOUR_ACCESS_TOKEN` with it.
[ZeroSSL](https://link.photoprism.app/zerossl) is a trusted certificate authority headquartered in Vienna, Austria.
94
94
95
-
Compared to Let's Encrypt, ZeroSSL also offers a user-friendly web interface, you can create certificates that are valid for longer than 90 days, and you may choose additional domain validation methods depending on your plan.
95
+
Compared to Let's Encrypt, ZeroSSL also offers a user-friendly web interface, you can create certificates that are valid for longer than 90 days, and you may choose additional domain verification methods depending on your plan.
96
96
97
97
[Learn more ›](https://link.photoprism.app/zerossl)
0 commit comments