Files
hassio-addons/filebrowser/config.json
2021-08-28 21:11:23 +02:00

63 lines
1.3 KiB
JSON

{
"name": "Filebrowser",
"version": "2.17.2",
"upstream": "2.17.2",
"slug": "filebrowser",
"description": "filebrowser provides a file managing interface within a specified directory and it can be used to upload, delete, preview, rename and edit your files",
"url": "https://github.com/alexbelgium/hassio-addons",
"startup": "services",
"ingress": true,
"ingress_port": 8099,
"panel_icon": "mdi:file-search",
"arch": [
"aarch64",
"amd64",
"armv7",
"armhf"
],
"ports": {
"8080/tcp": 8087
},
"ports_description": {
"8080/tcp": "Web UI port"
},
"apparmor": true,
"privileged": [
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"full_access": true,
"map": [
"media:rw",
"config:rw",
"addons:rw",
"backup:rw",
"share:rw",
"ssl"
],
"webui": "[PROTO:ssl]://[HOST]:[PORT:8080]",
"environment": {
"FB_BASEURL": "/filebrowser"
},
"options": {
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"networkdisks": "//server/share",
"cifsusername": "username",
"cifspassword": "password",
"NoAuth": false
},
"schema": {
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"localdisks": "str?",
"networkdisks": "str?",
"cifsusername": "str?",
"cifspassword": "str?",
"smbv1": "bool?",
"NoAuth": "bool"
}
}