revert b2eb5856c0
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 40s

revert added anubis to protect from malicious crawlers
This commit is contained in:
2025-06-01 23:06:43 +02:00
parent cc44af4acc
commit 6c8cea5989

View File

@@ -1,16 +1,13 @@
version: '3' version: '3'
services: services:
anubis-nginx: blog:
image: ghcr.io/techarohq/anubis:latest image: nginx:alpine
environment: restart: always
BIND: ":8080" volumes:
DIFFICULTY: "4" - ./public:/usr/share/nginx/html:ro
METRICS_BIND: ":9090" - ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
SERVE_ROBOTS_TXT: "true" networks:
TARGET: "http://nginx" - web
POLICY_FNAME: "/data/cfg/botPolicy.yaml"
OG_PASSTHROUGH: "true"
OG_EXPIRY_TIME: "24h"
labels: labels:
- "traefik.enable=true" - "traefik.enable=true"
- "traefik.http.routers.blog.rule=Host(`benno-lorenz.com`) || Host(`www.benno-lorenz.com`)" - "traefik.http.routers.blog.rule=Host(`benno-lorenz.com`) || Host(`www.benno-lorenz.com`)"
@@ -20,17 +17,6 @@ services:
- "traefik.http.routers.blog.service=blog" - "traefik.http.routers.blog.service=blog"
- "traefik.http.services.blog.loadbalancer.server.port=80" - "traefik.http.services.blog.loadbalancer.server.port=80"
- "traefik.docker.network=web" - "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: networks:
web: web:
external: true external: true