[GH-ISSUE #1007] Question: "GET /admin/login/ HTTP/1.1" 200 11144 spamming logs #632

Closed
opened 2026-03-01 14:45:10 +03:00 by kerem · 1 comment
Owner

Originally created by @eytschjey on GitHub (Jul 28, 2022).
Original GitHub issue: https://github.com/ArchiveBox/ArchiveBox/issues/1007

Please excuse me if this has already been discussed or is a total noob question.

I've set up archivebox as a docker container in an effort to have a simple daily backup of a static website.
I can reach the web GUI and managed to create an account and back up the page. But when looking in the logs, it keeps saying "GET /admin/login/ HTTP/1.1" 200 11144 every few minutes.

Here's my docker-compose:

version: '2.4'

services:
    archivebox:
        # build: .                              
        image: ${DOCKER_IMAGE:-archivebox/archivebox:master}
        command: server --quick-init 0.0.0.0:8000
        ports:
            - 6969:8000
        environment:
            - ALLOWED_HOSTS=*                  
            - MEDIA_MAX_SIZE=750m
            - PUID=1000
            - PGID=1000

        volumes:
            - /home/{myuseraccount}/docker/archivebox:/data

Am i doing something wrong?

Originally created by @eytschjey on GitHub (Jul 28, 2022). Original GitHub issue: https://github.com/ArchiveBox/ArchiveBox/issues/1007 Please excuse me if this has already been discussed or is a total noob question. I've set up archivebox as a docker container in an effort to have a simple daily backup of a static website. I can reach the web GUI and managed to create an account and back up the page. But when looking in the logs, it keeps saying "GET /admin/login/ HTTP/1.1" 200 11144 every few minutes. Here's my docker-compose: ``` version: '2.4' services: archivebox: # build: . image: ${DOCKER_IMAGE:-archivebox/archivebox:master} command: server --quick-init 0.0.0.0:8000 ports: - 6969:8000 environment: - ALLOWED_HOSTS=* - MEDIA_MAX_SIZE=750m - PUID=1000 - PGID=1000 volumes: - /home/{myuseraccount}/docker/archivebox:/data ``` Am i doing something wrong?
kerem closed this issue 2026-03-01 14:45:10 +03:00
Author
Owner

@pirate commented on GitHub (Jul 29, 2022):

That's normal, it's the Docker healthcheck heartbeat making sure the container is running successfully. You can disable it if you need by adding healthcheck: (as an empty entry) to the archivebox: section in your yml.

<!-- gh-comment-id:1199098381 --> @pirate commented on GitHub (Jul 29, 2022): That's normal, it's the Docker healthcheck heartbeat making sure the container is running successfully. You can disable it if you need by adding `healthcheck:` (as an empty entry) to the `archivebox:` section in your yml.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/ArchiveBox#632
No description provided.