Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
WIP: Move apache.yaml to layer YAML. Move composer yaml to layer #5
Open
Jump to file or symbol
Failed to load files and symbols.
| @@ -1 +0,0 @@ | ||
| -includes: ['layer:basic', 'interface:http'] |
29
layer.yaml
| @@ -0,0 +1,29 @@ | ||
| +includes: | ||
| + - 'layer:basic' | ||
| + - 'interface:http' | ||
| +defines: | ||
| + sites: | ||
| + type: object | ||
| + minProperties: 1 | ||
| + items: | ||
| + - type: object | ||
| + properties: | ||
| + server_name: | ||
| + type: string | ||
| + options: | ||
| + type: string | ||
| + install_from: | ||
| + type: object | ||
| + properties: | ||
| + source: | ||
| + type: string | ||
| + checksum: | ||
| + type: string | ||
| + hash_type: | ||
| + type: string | ||
| + enum: | ||
| + - sha256 | ||
| + - sha1 | ||
| + - md5 | ||
| + required: | ||
| + - 'server_name' |