Traefik Container persistent storage using QNAP

I am trying to setup Traefik on my QNAP using Container Station but can anyone tell me what the names of the directories are for setting up of persistent storage? NOTE The paths I show in the screenshot are for demonstration purposes and will be updated with the correct information.

Are you looking for hard-wired paths in Traefik? All paths can be individually set, with --configFile for the initial static config, then within for certResolver for TLS storage and for providers.file for dynamic config files.

This is what I am triyng to do but I need to know the name of the directory traefik expects.

The initial static config can be placed in /etc/traefik/ (doc), or any other folder using --configFile.

Dynamic config file folders need to be explicitly named in the static config of the provider (doc):

providers:
  file:
    directory: "/path/to/dynamic/conf"

Sonyou can choose any folder.