mirror of
https://github.com/hassio-addons/addon-tautulli.git
synced 2025-05-04 19:11:24 +00:00
* initial * Add .gitlab-ci.yml * Remove NGINX config and move SSL and auth to Tautulli * Update License * added deps cleanup * Add config as RO to support !secret * Minor text update * Removed TODO
47 lines
1 KiB
JSON
47 lines
1 KiB
JSON
{
|
|
"name": "Tautulli",
|
|
"version": "dev",
|
|
"slug": "tautulli",
|
|
"description": "Monitoring and tracking tool for Plex Media Server",
|
|
"url": "https://github.com/hassio-addons/addon-tautulli/tree/master/README.md",
|
|
"webui": "[PROTO:ssl]://[HOST]:[PORT:8181]",
|
|
"startup": "services",
|
|
"arch": [
|
|
"aarch64",
|
|
"amd64",
|
|
"armhf",
|
|
"i386"
|
|
],
|
|
"boot": "auto",
|
|
"hassio_api": true,
|
|
"homeassistant_api": false,
|
|
"host_network": false,
|
|
"ports": {
|
|
"8181/tcp": 8181
|
|
},
|
|
"map": [
|
|
"config",
|
|
"ssl"
|
|
],
|
|
"options": {
|
|
"log_level": "info",
|
|
"username": "",
|
|
"password": "",
|
|
"ssl": true,
|
|
"certfile": "fullchain.pem",
|
|
"keyfile": "privkey.pem"
|
|
},
|
|
"schema": {
|
|
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
|
|
"username": "str",
|
|
"password": "str",
|
|
"ssl": "bool",
|
|
"certfile": "str",
|
|
"keyfile": "str",
|
|
"i_like_to_be_pwned": "bool?",
|
|
"leave_front_door_open": "bool?"
|
|
},
|
|
"environment": {
|
|
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
|
|
}
|
|
}
|