Docker: Improve HTTPS docs for cloud config
This commit is contained in:
parent
64ac86c3ce
commit
6523fd1764
2 changed files with 4 additions and 4 deletions
|
@ -116,7 +116,7 @@ services:
|
|||
- "traefik.http.routers.photoprism.tls.domains[0].main=example.com"
|
||||
- "traefik.http.routers.photoprism.tls.domains[0].sans=*.example.com"
|
||||
environment:
|
||||
# !! UPDATE site url if your server has a public domain name !!
|
||||
# !! CHANGE site url if your server has a public domain name !!
|
||||
PHOTOPRISM_SITE_URL: "https://_public_ip_/"
|
||||
PHOTOPRISM_SITE_TITLE: "PhotoPrism"
|
||||
PHOTOPRISM_SITE_CAPTION: "Browse Your Life"
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
serversTransport:
|
||||
# Don't verify internal HTTPS certs:
|
||||
insecureSkipVerify: true
|
||||
# !! REMOVE when using Let's Encrypt as HTTPS cert resolver !!
|
||||
# !! REMOVE when using Let's Encrypt HTTPS !!
|
||||
rootCAs:
|
||||
- "/certs/ca.crt"
|
||||
|
||||
|
@ -42,14 +42,14 @@ certificatesResolvers:
|
|||
myresolver:
|
||||
# See https://doc.traefik.io/traefik/https/acme/
|
||||
acme:
|
||||
# !! REPLACE example email with your actual email address !!
|
||||
# !! REPLACE "info@example.com" with your actual email address for Let's Encrypt HTTPS !!
|
||||
email: info@example.com
|
||||
storage: /data/letsencrypt.json
|
||||
httpChallenge:
|
||||
entryPoint: web
|
||||
|
||||
providers:
|
||||
# !! REMOVE file provider when using Let's Encrypt as HTTPS cert resolver !!
|
||||
# !! REMOVE file provider when using Let's Encrypt HTTPS !!
|
||||
file:
|
||||
filename: "/certs/config.yml"
|
||||
watch: true
|
||||
|
|
Loading…
Reference in a new issue