Update Bugsink, Add BEHIND_HTTPS_PROXY env var to docker-compose (#290)

Introduces the BEHIND_HTTPS_PROXY environment variable to the bugsink service for configuring setups behind an HTTPS proxy. Default is set to 'false'; update as needed for SSL-enabled proxy deployments.
This commit is contained in:
Hayden Thorn
2025-08-23 17:35:39 +12:00
committed by GitHub
parent 2e370b0770
commit e69fe112f9

View File

@@ -27,6 +27,7 @@ services:
PORT: 8000
DATABASE_URL: mysql://root:${DB_PASSWORD}@mysql:3306/bugsink
BASE_URL: http://${MAIN_DOMAIN}
BEHIND_HTTPS_PROXY: "false" # Change this for setups behind a proxy w/ ssl enabled
healthcheck:
test: ["CMD-SHELL", "python -c 'import requests; requests.get(\"http://localhost:8000/\").raise_for_status()'"]
interval: 5s