mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-08-19 11:27:21 +02:00
Ingress responses were re-gzipped by nginx (default gzip_types includes text/html), dropping Content-Length and forcing a chunked/streamed response. That pushes both Supervisor and Core's ingress proxy out of their buffered relay path into the streaming path, where an aiohttp-side error surfaces to the browser as a 502 Bad Gateway even though the addon's own nginx logs a 200. Disabling gzip on the ingress server block keeps responses identity-encoded with an intact Content-Length so the relay uses the simpler, more robust buffered path. Fixes #2766
46 lines
883 B
YAML
46 lines
883 B
YAML
arch:
|
|
- aarch64
|
|
- amd64
|
|
backup_exclude:
|
|
- backups
|
|
- docker_config/cli-plugins
|
|
description: Manage your Docker environment with ease
|
|
docker_api: true
|
|
hassio_api: true
|
|
image: ghcr.io/alexbelgium/portainer-{arch}
|
|
ingress: true
|
|
ingress_port: 1337
|
|
ingress_stream: true
|
|
init: false
|
|
map:
|
|
- addon_config:rw
|
|
- share:rw
|
|
- ssl
|
|
name: Portainer
|
|
options:
|
|
env_vars: []
|
|
certfile: fullchain.pem
|
|
keyfile: privkey.pem
|
|
password: homeassistant
|
|
ssl: false
|
|
panel_admin: false
|
|
panel_icon: mdi:docker
|
|
ports:
|
|
8000/tcp: null
|
|
9099/tcp: 9000
|
|
ports_description:
|
|
8000/tcp: Edge Agent Api (Enable when managing remote edge agents)
|
|
9099/tcp: Web UI port
|
|
schema:
|
|
env_vars:
|
|
- name: match(^[A-Za-z0-9_]+$)
|
|
value: str?
|
|
certfile: str
|
|
keyfile: str
|
|
password: str?
|
|
ssl: bool
|
|
slug: portainer
|
|
udev: true
|
|
url: https://github.com/alexbelgium/hassio-addons
|
|
version: "2.43.0.1"
|