mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-06 07:47:53 +10:00
Fix review feedback: restore archivebox.localhost subdomain routing, dev docs, and extractor env vars
- Restore LISTEN_HOST=archivebox.localhost:8000 and CSRF_TRUSTED_ORIGINS=http://admin.archivebox.localhost:8000 in docker-compose.yml (subdomain routing is core to ArchiveBox architecture) - Restore HEALTHCHECK URL to admin.archivebox.localhost in Dockerfile - Restore SAVE_WGET=False SAVE_DOM=False in README security section (old SAVE_* env vars still work via x-aliases in config.json) - Revert dev setup docs to use ./bin/lock_pkgs.sh instead of bare uv sync - Fix docker-compose.yml open URL to web.archivebox.localhost:8000 https://claude.ai/code/session_01X2H7XLawCzLGnrxMArXtVZ
This commit is contained in:
@@ -391,7 +391,7 @@ VOLUME "$DATA_DIR"
|
||||
EXPOSE 8000
|
||||
|
||||
HEALTHCHECK --interval=30s --timeout=20s --retries=15 \
|
||||
CMD curl --silent 'http://localhost:8000/health/' | grep -q 'OK'
|
||||
CMD curl --silent 'http://admin.archivebox.localhost:8000/health/' | grep -q 'OK'
|
||||
|
||||
ENTRYPOINT ["dumb-init", "--", "/app/bin/docker_entrypoint.sh"]
|
||||
CMD ["archivebox", "server", "--init", "0.0.0.0:8000"]
|
||||
|
||||
Reference in New Issue
Block a user