├── .dockerignore ├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Caddyfile ├── Dockerfile ├── LICENSE.md ├── README.md └── test └── Caddyfile /.dockerignore: -------------------------------------------------------------------------------- 1 | LICENSE* 2 | README* 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/caddy-docker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/caddy-docker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/caddy-docker/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/caddy-docker/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/caddy-docker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/caddy-docker/HEAD/Caddyfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/caddy-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/caddy-docker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wemake-services/caddy-docker/HEAD/README.md -------------------------------------------------------------------------------- /test/Caddyfile: -------------------------------------------------------------------------------- 1 | 127.0.0.1 2 | --------------------------------------------------------------------------------