Protect your digital assets with advanced threat detection that works silently in the background. This security solution evaluates incoming traffic to distinguish between legitimate visitors and malicious bots. By analyzing behavioral patterns and IP reputations, it blocks harmful requests before they reach your server. Key benefits include: 1. Automated Threat Mitigation: Instantly block DDoS attacks, credential stuffing, and vulnerability scanners. 2. Improved Site Performance: Save server resources by dropping junk traffic at the edge, ensuring fast load times for real users. 3. Customizable Security Rules: Tailor challenge pages and blocking criteria to match your specific risk profile. 4. Real-time Analytics: Monitor traffic patterns and security events through a comprehensive dashboard. Keep your infrastructure safe and maintain high availability without compromising the user experience.
services:
web:
image: xwiki:lts-mysql-tomcat
container_name: xwiki-web
depends_on:
- db
ports:
- "8080:8080"
environment:
- DB_USER=${DB_USER}
- DB_PASSWORD=${DB_PASSWORD}
- DB_HOST=db
- DB_DATABASE=xwiki
- DB_DATABASE_URL=jdbc:mysql://db/xwiki?useSSL=false
volumes:
- ./xwiki-data:/usr/local/xwiki
restart: unless-stopped
db:
image: mysql:8.0
container_name: xwiki-mysql
volumes:
- ./mysql-data:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
- MYSQL_DATABASE=xwiki
- MYSQL_USER=${DB_USER}
- MYSQL_PASSWORD=${DB_PASSWORD}
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_bin --explicit-defaults-for-timestamp=1
restart: unless-stoppedMYSQL_ROOT_PASSWORD=super_secret_root_password
DB_USER=xwiki
DB_PASSWORD=secure_xwiki_passwordAuto-fetched about 20 hours ago
Auto-fetched about 20 hours ago