import { Manifest } from '@bitsquare/nopy-cubes'; import { z } from 'zod'; export default Manifest({ id: 'caddy', name: 'Install Caddy webserver', dependencies: () => [], schema: z.object({ // tls /path/to/cert.pem /path/to/key.pem TLS: z .string() .default('') .describe(` --> enabled and automatically managed internal --> use Caddy custom root CA for self-signed certs (for testing purpose) /path/to/cert /path/to/key --> Provide custom certificates `), }), });