Add OctoPrint Reverse Proxy

This commit is contained in:
Max Winterstein
2021-01-04 00:14:55 +01:00
parent 001d41b342
commit 48fc1f2d78
9 changed files with 148 additions and 2 deletions

View File

@@ -0,0 +1,37 @@
{
"name": "OctoPrint Proxy",
"version": "1.0.0",
"slug": "octoprint_proxy",
"description": "Access OctoPrint from within Home Assistant",
"url": "https://github.com/MaxWinterstein/homeassistant-addons/",
"ingress": true,
"ingress_port": 80,
"panel_title": "OctoPrint",
"panel_icon": "mdi:printer-3d-nozzle",
"arch": [
"armhf",
"armv7",
"aarch64",
"amd64",
"i386"
],
"startup": "application",
"boot": "auto",
"options": {
"octoprint_host" : "octopi",
"octoprint_port" : "443",
"ssl": {
"enabled": true,
"verify": false
}
},
"schema": {
"octoprint_host" : "str",
"octoprint_port" : "port",
"ssl": {
"enabled": "bool",
"verify": "bool"
}
},
"hassio_api": false
}