Organizing Sites into multiple Caddyfiles
Hi @acole, welcome to the Caddy community. Caddy doesn’t have the site enable / disable aliases Apache does that moves/removes symlinks automatically, but Caddy can import multiple files when starting up, just like Apache does. You can use one central Caddyfile with import directives, e.g. import /path/to/site1/Caddyfile import /path/to/site2/Caddyfile # ... rinse and repeat Or just one import directive that fetches a glob: import /path/to/*.caddy Then populate the /path/to/ directory with...