├── .dockerignore ├── BUILDER.md ├── Caddyfile ├── Dockerfile ├── Dockerfile-no-stats ├── LICENSE ├── README.md ├── index.html └── php ├── Caddyfile ├── Dockerfile ├── Dockerfile-no-stats └── index.php /.dockerignore: -------------------------------------------------------------------------------- 1 | LICENSE* 2 | README* 3 | -------------------------------------------------------------------------------- /BUILDER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/caddy-docker/HEAD/BUILDER.md -------------------------------------------------------------------------------- /Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/caddy-docker/HEAD/Caddyfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/caddy-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-no-stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/caddy-docker/HEAD/Dockerfile-no-stats -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/caddy-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/caddy-docker/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/caddy-docker/HEAD/index.html -------------------------------------------------------------------------------- /php/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/caddy-docker/HEAD/php/Caddyfile -------------------------------------------------------------------------------- /php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/caddy-docker/HEAD/php/Dockerfile -------------------------------------------------------------------------------- /php/Dockerfile-no-stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/caddy-docker/HEAD/php/Dockerfile-no-stats -------------------------------------------------------------------------------- /php/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/caddy-docker/HEAD/php/index.php --------------------------------------------------------------------------------