8 Commits

Author SHA1 Message Date
github-actions
00c6408585 GitHub bot: changelog 2025-11-16 20:00:30 +00:00
github-actions
94a909d54a GitHub bot: changelog 2025-11-16 19:54:00 +00:00
Alexandre
72145f9c4a Update config.yaml 2025-11-16 20:43:33 +01:00
Alexandre
2a32e88f47 Enhance ingress.sh for subfolder and IPv6 handling
Updated ingress configuration script to ensure subfolder handling and disable IPv6 listeners.
2025-11-16 20:43:20 +01:00
Alexandre
46afbc2aa8 Update calibre version to 8.14.0-3 2025-11-16 20:39:45 +01:00
Alexandre
1da36b5f7a Revert
Updated NGINX configuration handling for ingress setup.
2025-11-16 20:37:32 +01:00
Alexandre
613c1767d5 Enhance NGINX config modifications in 90-ingress.sh
Added additional sed commands to modify NGINX configuration for Home Assistant ingress.
2025-11-16 20:34:55 +01:00
Alexandre
ef13a12add Update config.yaml 2025-11-16 20:31:45 +01:00
5 changed files with 13 additions and 3 deletions

View File

@@ -1,3 +1,5 @@
## 2025.11.07 (16-11-2025)
- Minor bugs fixed
## 2025.11.06 (15-11-2025)
- Minor bugs fixed
## 2025.11.05 (15-11-2025)

View File

@@ -116,5 +116,5 @@ tmpfs: true
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/birdnet-pi
usb: true
version: 2025.11.06
version: 2025.11.07
video: true

View File

@@ -1,3 +1,5 @@
## 8.14.0-4 (16-11-2025)
- Minor bugs fixed
## 8.14.0-2 (15-11-2025)
- Minor bugs fixed

View File

@@ -117,5 +117,5 @@ schema:
slug: calibre
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/calibre
version: "8.14.0-2"
version: 8.14.0-4
video: true

View File

@@ -23,9 +23,15 @@ sed -i '/listen \[::\]/d' "${NGINX_CONFIG}"
# Adapt ports and upstream paths for Home Assistant ingress
sed -i "s|3000|$(bashio::addon.ingress_port)|g" "${NGINX_CONFIG}"
sed -i "s|SUBFOLDER|${SUBFOLDER}|g" "${NGINX_CONFIG}"
sed -i "s|SUBFOLDER|/|g" "${NGINX_CONFIG}"
sed -i "s|CWS|8082|g" "${NGINX_CONFIG}"
sed -i "s|REPLACE_HOME|${HOME:-/root}|g" "${NGINX_CONFIG}"
sed -i "s|REPLACE_DOWNLOADS_PATH|${HOME:-/config}|g" "${NGINX_CONFIG}"
sed -i '/proxy_buffering/a proxy_set_header Accept-Encoding "";' "${NGINX_CONFIG}"
sed -i '/proxy_buffering/a sub_filter_once off;' "${NGINX_CONFIG}"
sed -i '/proxy_buffering/a sub_filter_types *;' "${NGINX_CONFIG}"
sed -i '/proxy_buffering/a sub_filter "vnc/index.html?autoconnect" "vnc/index.html?path=%%path%%/websockify?autoconnect";' "${NGINX_CONFIG}"
sed -i "s|%%path%%|${SUBFOLDER:1}|g" "${NGINX_CONFIG}"
# Avoid content encoding on proxied responses to keep Selkies happy
sed -i '/proxy_buffering/a \