Files
hassio-addons/nginx_webserver_proxy/config.yaml
alexbelgium e6f6c95115 Fix manual-build versions: use .N suffix instead of -N
Home Assistant (AwesomeVersion) no longer recognises the X.Y.Z-N
manual-build nomenclature, so rebuild these with a .N suffix instead.
Semver treats X.Y.Z-N as a pre-release (sorts below X.Y.Z); X.Y.Z.N
sorts above, so each shows up as a proper upgrade.

- manyfold             0.146.1-3    -> 0.146.1.3
- qbittorrent          5.2.3-1      -> 5.2.3.1
- birdnet-pi           2026.07.10-1 -> 2026.07.10.1
- birdnet-pi-zach      2026.07.10-2 -> 2026.07.10.2
- nginx_webserver_proxy 2.14.1-1    -> 2.14.1.1
- immich               3.0.1-2      -> 3.0.1.2
- immich_cuda          3.0.1-2      -> 3.0.1.2
- immich_noml          3.0.1-2      -> 3.0.1.2
- immich_openvino      3.0.1-2      -> 3.0.1.2

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-21 20:32:08 +02:00

35 lines
984 B
YAML

name: "Nginx Proxy Manager + Static Web Server"
slug: nginx_webserver_proxy
description: "Nginx Proxy Manager with a built-in configurable static file server. Manage reverse proxies via NPM UI on port 81 while serving files from HA storage on port 80."
version: "2.14.1.1"
url: "https://github.com/alexbelgium/hassio-addons/tree/master/nginx_webserver_proxy"
arch:
- amd64
- aarch64
startup: services
init: false
ports:
80/tcp: 80
81/tcp: 81
443/tcp: 443
ports_description:
80/tcp: "HTTP (static site + NPM proxy hosts)"
81/tcp: "NPM Admin Web UI"
443/tcp: "HTTPS (NPM proxy hosts)"
webui: "http://[HOST]:[PORT:81]"
map:
- addon_config:rw
- share:rw
- media:rw
options:
static_site_enabled: true
static_site_root: "/share/www"
static_site_prefix: "/"
log_level: "info"
schema:
static_site_enabled: bool
static_site_root: str
static_site_prefix: str
log_level: list(info|debug|warn|error)
image: "ghcr.io/alexbelgium/nginx_webserver_proxy-{arch}"