Files
hassio-addons-avm/apache2-minimal/config.json
2021-08-24 14:35:11 +03:00

43 lines
1.1 KiB
JSON

{
"name": "Apache2 Minimal",
"version": "2.1.1",
"slug": "apache2-minimal",
"description": "Webserver without PHP and minimal extra modules",
"url": "https://github.com/FaserF/hassio-addons/tree/master/apache2-minimal",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "application",
"boot": "auto",
"webui": "[PROTO:ssl]://[HOST]:[PORT:80]",
"map": ["share:rw", "media:rw", "ssl"],
"ingress": true,
"panel_icon": "mdi:web-box",
"options": {
"document_root": "/share/htdocs",
"default_conf": "default",
"default_ssl_conf": "default",
"website_name":null,
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"document_root":"str",
"default_conf":"str",
"default_ssl_conf":"str",
"website_name":"str",
"username":"str?",
"password":"str?",
"ssl": "bool",
"certfile": "str",
"keyfile": "str"
},
"ports": {
"80/tcp": 80,
"443": 443
},
"ports_description": {
"80/tcp": "Web interface http",
"443/tcp": "SSL Web interface"
}
}