Gitea hook is returning html and not firing build

I have gitea and drone both set up in docker containers, but when the webhook triggers for my repo, i get this in return and no build triggers

honestly i’m not really sure where to go from here, I’ve poked around in a couple of things but not much is changing, this is my docker-compose.yml

version: '2'
services:
  drone-server:
    image: drone/drone:0.8
    ports:
      - 7000:8000
      - 9000
    volumes:
      - ./drone:/var/lib/drone
    restart: always
    environment:
      - DRONE_OPEN=true
      - DRONE_ADMIN=[redacted]
      - DRONE_HOST=[redacted]
      - DRONE_GITEA=true
      - DRONE_GITEA_URL=[redacted]
      # - DRONE_GITEA_PRIVATE_MODE=true
      - DRONE_SECRET=[redacted]
  drone-agent:
    image: drone/agent:0.8
    command: agent
    restart: always
    depends_on:
      - drone-server
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    environment:
      - DRONE_SERVER=drone-server:9000
      - DRONE_SECRET=[redacted]

scratch that! fixed it by updating to drone/drone:latest and drone/agent:latest!

what is the URL for your webhook? do you have a reverse proxy sitting in front of Drone? If yes, have you configured X-Forwarded-Proto (see docs) so that hooks are created with the correct scheme?