This commit is contained in:
Hans Karlinius
2024-11-26 08:51:09 +01:00
parent 10b0e46fa5
commit 112877ffb2
5 changed files with 11 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ FROM $BUILD_FROM
# Install requirements for add-on
RUN \
apk add --no-cache \
python3
nginx
WORKDIR /data
# Set shell

View File

@@ -1,5 +1,5 @@
name: VirtualHere Client
version: "0.1.109"
version: "0.1.110"
slug: vhclient
description: VirtualHere Client
arch:
@@ -16,10 +16,10 @@ host_network: true
#hassio_role: manager
#homeassistant_api: true
#supervisor_api: true
ports:
8000/tcp: 8000
#ports:
# 8000/tcp: 8000
ingress: true
ingress_port: 8000
#ingress_port: 8000
panel_icon: mdi:puzzle
panel_title: vhclient
devices:

View File

@@ -0,0 +1,5 @@
server {
listen 8099;
allow 172.30.32.2;
deny all;
}

View File

@@ -1,3 +1,3 @@
#!/usr/bin/with-contenv bashio
bashio::log.info "Starting VirtualHere HTTP"
python3 -m http.server 8000
exec nginx