├── .gitignore ├── README.md ├── config ├── acme │ └── README.md ├── authusers.txt ├── dynamic │ ├── noop.yaml │ └── security.yaml └── traefik.yaml └── docker-compose.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wollomatic/traefik-hardened/HEAD/README.md -------------------------------------------------------------------------------- /config/acme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wollomatic/traefik-hardened/HEAD/config/acme/README.md -------------------------------------------------------------------------------- /config/authusers.txt: -------------------------------------------------------------------------------- 1 | foobar:$2y$05$nFdTkWw.z3tB4G0k9ekJdeRz6x1GWtfG.Fo0NHMs3h/.PTBGKaTfy 2 | -------------------------------------------------------------------------------- /config/dynamic/noop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wollomatic/traefik-hardened/HEAD/config/dynamic/noop.yaml -------------------------------------------------------------------------------- /config/dynamic/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wollomatic/traefik-hardened/HEAD/config/dynamic/security.yaml -------------------------------------------------------------------------------- /config/traefik.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wollomatic/traefik-hardened/HEAD/config/traefik.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wollomatic/traefik-hardened/HEAD/docker-compose.yaml --------------------------------------------------------------------------------