streamline package naming
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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(`
|
||||
<empty-string> --> 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
|
||||
`),
|
||||
}),
|
||||
});
|
||||
Reference in New Issue
Block a user