Files
hugoblog/docker-compose.prod.yml
Benno Lorenz b2eb5856c0
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 50s
added anubis to protect from malicious crawlers
2025-06-01 21:40:48 +02:00

36 lines
1.1 KiB
YAML

version: '3'
services:
anubis-nginx:
image: ghcr.io/techarohq/anubis:latest
environment:
BIND: ":8080"
DIFFICULTY: "4"
METRICS_BIND: ":9090"
SERVE_ROBOTS_TXT: "true"
TARGET: "http://nginx"
POLICY_FNAME: "/data/cfg/botPolicy.yaml"
OG_PASSTHROUGH: "true"
OG_EXPIRY_TIME: "24h"
labels:
- "traefik.enable=true"
- "traefik.http.routers.blog.rule=Host(`benno-lorenz.com`) || Host(`www.benno-lorenz.com`)"
- "traefik.http.routers.blog.entrypoints=websecure"
- "traefik.http.routers.blog.tls=true"
- "traefik.http.routers.blog.tls.certresolver=le"
- "traefik.http.routers.blog.service=blog"
- "traefik.http.services.blog.loadbalancer.server.port=80"
- "traefik.docker.network=web"
volumes:
- "./botPolicy.yaml:/data/cfg/botPolicy.yaml:ro"
nginx:
image: nginx:alpine
restart: always
volumes:
- ./public:/usr/share/nginx/html:ro
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
networks:
- web
networks:
web:
external: true