Skip to content

How to access LetsEncrypt certificates #170

Answered by felddy
F1D3LL1O asked this question in Q&A
Discussion options

You must be logged in to vote

@F1D3LL1O,
I think I understand your use case, and it should be doable. I would double-check the permissions on the certificate files. I think that they are usually accessible by root only, which could prevent FoundryVTT from reading them.

I was able to make this work using the following docker-compose.yml file:

version: "3.8"

secrets:
  credentials:
    file: credentials-mine.json

services:
  foundry:
    image: felddy/foundryvtt:release
    hostname: felddy_foundryvtt
    init: true
    restart: "no"
    volumes:
      - type: bind
        source: ./data
        target: /data
      - type: bind
        source: /etc/letsencrypt
        target: /etc/letsencrypt
    environment:
      - C…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@F1D3LL1O
Comment options

Answer selected by felddy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants