photoprism/setup/docker/cloud/traefik.yaml

70 lines
1.8 KiB
YAML
Raw Normal View History

# USING LET'S ENCRYPT HTTPS
# -------------------------------------------------------------------------
#
# If your server has a public domain name, please disable the self-signed
# certificate and enable domain based routing in docker-compose.yml and
# traefik.yaml (see inline instructions in !! UPPERCASE !!)
#
# ssh root@<YOUR SERVER IP>
# cd /opt/photoprism
# nano docker-compose.yml
# nano traefik.yaml
# docker compose stop
# docker compose up -d
#
# You should now be able to access your instance without security warnings.
# -------------------------------------------------------------------------
# set to DEBUG to enable debug mode
log:
level: INFO
2021-08-05 18:18:08 +00:00
# disable telemetry
global:
sendAnonymousUsage: false
# allow to proxy services with self-signed certificates
2021-08-05 18:18:08 +00:00
serversTransport:
insecureSkipVerify: true
# !! REMOVE when using Let's Encrypt HTTPS !!
2021-08-05 18:18:08 +00:00
rootCAs:
- "/certs/ca.crt"
# open ports ond protocols (HTTP will be redirected to HTTPS)
2021-08-05 18:18:08 +00:00
entryPoints:
web:
address: ":80"
http:
redirections:
entryPoint:
to: websecure
scheme: https
websecure:
address: ":443"
# auto tls / https
2021-08-05 18:18:08 +00:00
certificatesResolvers:
myresolver:
# See https://doc.traefik.io/traefik/https/acme/
2021-08-05 18:18:08 +00:00
acme:
# !! REPLACE "info@yourdomain.com" with your actual email address for Let's Encrypt HTTPS !!
email: info@yourdomain.com
2021-08-05 18:18:08 +00:00
storage: /data/letsencrypt.json
httpChallenge:
entryPoint: web
# config providers
2021-08-05 18:18:08 +00:00
providers:
# !! REMOVE file provider when using Let's Encrypt HTTPS !!
2021-08-05 18:18:08 +00:00
file:
filename: "/certs/config.yml"
watch: true
# always keep this
2021-08-05 18:18:08 +00:00
docker:
exposedByDefault: false
watch: true
# disable dashboard and api
2021-08-05 18:18:08 +00:00
api:
insecure: false
dashboard: false