Portainer Templates logo

Portainer Templates

Crowdsec WEB UI Crowdsec WEB UI

Stack

Cyber Security

A modern, responsive web interface for managing CrowdSec alerts and decisions. Built with React, Vite, Bun, and Tailwind CSS.

Image details

Architecture: amd64, arm64
Image size: 131 MB
User: theduffman85

Source details

Stars: 510
Forks: 28
Language: TypeScript
License: AGPL-3.0
Updated: 12 days ago

Configuration

Type
Compose
Platform
linux
Image
ghcr.io/theduffman85/crowdsec-web-ui:latest
Ports
${PORT:-3000}:3000
Volumes
/app/data : /portainer/Files/AppData/Config/crowdsec-web-ui/data
Env vars
CROWDSEC_URL=${CROWDSEC_URL:-http://crowdsec:8080}CROWDSEC_USER=${CROWDSEC_USER:-crowdsec-web-ui}CROWDSEC_PASSWORD=${CROWDSEC_PASSWORD}CROWDSEC_LOOKBACK_PERIOD=${CROWDSEC_LOOKBACK_PERIOD:-168h}CROWDSEC_REFRESH_INTERVAL=${CROWDSEC_REFRESH_INTERVAL:-30s}CROWDSEC_IDLE_REFRESH_INTERVAL=${CROWDSEC_IDLE_REFRESH_INTERVAL:-5m}CROWDSEC_IDLE_THRESHOLD=${CROWDSEC_IDLE_THRESHOLD:-2m}CROWDSEC_FULL_REFRESH_INTERVAL=${CROWDSEC_FULL_REFRESH_INTERVAL:-5m}BASE_PATH=${BASE_PATH:-}
Restart
unless-stopped
Source

Template by xneo1·Source

Standalone Install

Select an install method, to see config/commands for deploying Crowdsec WEB UI

Installation method

Install on Portainer

Import all app templates into your Portainer instance, for easy 1-click deploys

  1. Ensure both Docker and Portainer are installed, and up-to-date
  2. Log into your Portainer web UI
  3. Under Settings → App Templates, paste the below URL
  4. Head to Home → App Templates, and the list of apps will show up
  5. Select Crowdsec WEB UI, fill in any config options, and hit Deploy

Template Import URL

https://raw.githubusercontent.com/Lissy93/portainer-templates/main/templates.json
Show Me demo
Original stackfile

The compose file this template deploys, straight from its repo:

version: '3.8'

services:
  crowdsec-web-ui:
    image: ghcr.io/theduffman85/crowdsec-web-ui:latest
    container_name: crowdsec-web-ui
    restart: unless-stopped
    ports:
      - ${PORT:-3000}:3000
    environment:
      - CROWDSEC_URL=${CROWDSEC_URL:-http://crowdsec:8080}
      - CROWDSEC_USER=${CROWDSEC_USER:-crowdsec-web-ui}
      - CROWDSEC_PASSWORD=${CROWDSEC_PASSWORD}
      - CROWDSEC_LOOKBACK_PERIOD=${CROWDSEC_LOOKBACK_PERIOD:-168h}
      - CROWDSEC_REFRESH_INTERVAL=${CROWDSEC_REFRESH_INTERVAL:-30s}
      - CROWDSEC_IDLE_REFRESH_INTERVAL=${CROWDSEC_IDLE_REFRESH_INTERVAL:-5m}
      - CROWDSEC_IDLE_THRESHOLD=${CROWDSEC_IDLE_THRESHOLD:-2m}
      - CROWDSEC_FULL_REFRESH_INTERVAL=${CROWDSEC_FULL_REFRESH_INTERVAL:-5m}
      - BASE_PATH=${BASE_PATH:-}
    volumes:
      - /portainer/Files/AppData/Config/crowdsec-web-ui/data:/app/data
    networks:
      - crowdsec-web-ui-network

networks:
  crowdsec-web-ui-network:
    driver: bridge

Or deploy it directly from the source:

git clone https://github.com/xneo1/portainer_templates
cd portainer_templates
docker compose -f Template/Stack/crowdsec-web-ui.yml up -d

More install options in our documentation, or see theduffman85/crowdsec-web-ui for app-specific guidance.

CrowdSec Web UI Logo


GitHub Workflow Status Trivy Scan GitHub License GitHub last commit Latest Container

CrowdSec Web UI

A self-hosted dashboard for CrowdSec: investigate alerts, manage decisions, monitor runtime metrics, and send notifications from one responsive UI.
React Vite Tailwind CSS Node.js Docker

Features

AreaHighlights
DashboardAlert and active-decision totals, attack map, drilldowns, top lists, shared quick filters, and simulation counts
AlertsSearchable alert history, persistent count-aware quick filters, CrowdSec alert contexts, IP/AS/location details, event metadata, simulation labels, and configurable columns
DecisionsActive and expired decisions, persistent count-aware quick filters, duplicate hiding, manual bans, custom durations, reasons, and cleanup actions
Multi-instanceSeveral CrowdSec LAPIs, per-instance views, and a Combined scope for Dashboard, Alerts, and Decisions
MetricsOptional Prometheus views for LAPI activity, bouncers, AppSec, parsers, latency, parsing time, and whitelists
NotificationsAlert, decision, CVE, availability, and update rules delivered through Email, Gotify, MQTT, ntfy, or Webhooks
SecurityInitial administrator setup, password and TOTP login, passkeys, OIDC SSO, group roles, and instance-wide read-only mode
LocalizationArabic, Chinese, English, French, German, Hindi, Japanese, Portuguese, Russian, and Spanish
ExperienceUnified search, dark/light themes, and responsive layouts

Screenshots

Dashboard Combined multi-instance alerts

Alerts Quick filters applied to alerts

Alert details with CrowdSec context Search Syntax

Decisions Add Decision

Notification Center Notification Rule

Runtime Metrics Settings

Quick Start

You need a running CrowdSec LAPI. Connect the Web UI using either watcher password authentication or agent mTLS.

  1. Register the Web UI

Watcher password

openssl rand -hex 32
docker exec crowdsec cscli machines add crowdsec-web-ui --password 'replace-with-generated-password' -f /dev/null

# For local installations
sudo cscli machines add crowdsec-web-ui --password 'replace-with-generated-password' -f /dev/null

Replace replace-with-generated-password with the value printed by openssl.
!IMPORTANT Keep -f /dev/null. It registers the machine without overwriting the CrowdSec container's existing credentials file.

Agent mTLS

Configure LAPI TLS authentication and create a client certificate/key pair using the CrowdSec TLS authentication guide.

  1. Start with Docker Compose

services:
  crowdsec-web-ui:
    image: ghcr.io/theduffman85/crowdsec-web-ui:latest
    container_name: crowdsec_web_ui
    ports:
      - "3000:3000"
    # For local CrowdSec instances
    # extra_hosts:
      # - "host.docker.internal:host-gateway"
    environment:
      CONFIG_INSTANCE_LAPI_URL: http://crowdsec:8080
      # For local CrowdSec instances
      # CONFIG_INSTANCE_LAPI_URL: http://host.docker.internal:8080
      CONFIG_INSTANCE_LAPI_AUTH_USERNAME: crowdsec-web-ui
      CONFIG_INSTANCE_LAPI_AUTH_PASSWORD: your-crowdsec-password
    volumes:
      - ./data:/app/data
    restart: unless-stopped

A ready-to-use docker-compose.yml is included. Add the generated password, make sure the Web UI can reach CrowdSec on the same Docker network, then start it.
docker compose up -d

Open http://localhost:3000 and create the initial administrator account.

Docker Run Alternative

docker pull ghcr.io/theduffman85/crowdsec-web-ui:latest
mkdir -p data
docker run -d \
  --name crowdsec_web_ui \
  -p 3000:3000 \
  -v $(pwd)/data:/app/data \
  -e CONFIG_INSTANCE_LAPI_URL=http://crowdsec:8080 \
  -e CONFIG_INSTANCE_LAPI_AUTH_USERNAME=crowdsec-web-ui \
  -e CONFIG_INSTANCE_LAPI_AUTH_PASSWORD=your-crowdsec-password \
  --network your_crowdsec_network \
  ghcr.io/theduffman85/crowdsec-web-ui:latest

Current images use Node.js and do not have the former Bun/AVX-specific x64 limitation.

mTLS Compose Alternative

services:
  crowdsec-web-ui:
    image: ghcr.io/theduffman85/crowdsec-web-ui:latest
    container_name: crowdsec_web_ui
    ports:
      - "3000:3000"
    environment:
      CONFIG_INSTANCE_LAPI_URL: https://crowdsec:8080
      CONFIG_INSTANCE_LAPI_AUTH_TYPE: mtls
      CONFIG_INSTANCE_LAPI_AUTH_CERT_FILE: /certs/agent.pem
      CONFIG_INSTANCE_LAPI_AUTH_KEY_FILE: /certs/agent-key.pem
      # CONFIG_INSTANCE_LAPI_TLS_CA_FILE: /certs/ca.pem
    volumes:
      - ./data:/app/data
      - /path/on/host/agent.pem:/certs/agent.pem:ro
      - /path/on/host/agent-key.pem:/certs/agent-key.pem:ro
      # - /path/on/host/ca.pem:/certs/ca.pem:ro
    restart: unless-stopped

Adjust the URL and certificate paths. Enable CONFIG_INSTANCE_LAPI_TLS_CA_FILE and its volume when LAPI uses a private CA.
!CAUTION Use HTTPS and a hardened reverse proxy for public deployments. Built-in authentication protects the UI and API, but TLS terminates outside the application. OIDC integrations include Authentik, Authelia, and Keycloak. Migrated installations that predate authentication remain unauthenticated until explicitly enabled.

Architecture

ComponentImplementation
ClientReact, Vite, and Tailwind CSS; builds to dist/client
ServerNode.js and Hono; builds to dist/server
StorageSQLite via better-sqlite3 under /app/data
CrowdSecWatcher password or agent mTLS; delta refreshes and chunked historical synchronization
ContainerRuns as the non-root node user

Configuration

Configuration files

EnvironmentDefault path
Docker/app/data/config.yaml
Local./data/config.yaml

Use CONFIG_FILE only to select another existing file. config.example.yaml contains the complete commented YAML reference.

Configuration lifecycle

StageBehavior
First startCreates the missing default file. Supplied values become active YAML; defaults and optional examples remain comments. Generated mappings use block rows and the documented order.
Later startsTreats the file as user-managed. CONFIG values override it in memory without rewriting it; generated explanations and defaults are not refreshed.
Persistent overridesCONFIGPERSISTOVERRIDES: "true" writes validated merged values while preserving comments where possible. Removing a persisted non-secret override leaves its last value in YAML.
PrecedenceApplies section variables, then field variables, then indexed array variables. Removing a non-persisted override reveals the file value.
LoggingRecords applied paths and before/after values. Credentials are redacted; secret references show only their environment name or file path.
ReloadingRequires a restart after configuration changes or secret rotation.

Environment overrides

  • Values are parsed as YAML and validated.
  • Arrays use zero-based contiguous indexes: CONFIG_AUTH_OIDC_ADMIN_GROUPS_0, CONFIG_INSTANCES_0_ID, CONFIG_INSTANCES_0_METRICS_0_URL.
  • Whole sections accept YAML through CONFIG_SERVER, CONFIG_STORAGE, CONFIG_UI, CONFIG_AUTH, CONFIG_NOTIFICATIONS, CONFIG_UPDATES, CONFIG_CROWDSEC, or CONFIG_INSTANCES.
  • CONFIG_INSTANCE_* addresses instance 0: CONFIG_INSTANCE_NAME equals CONFIG_INSTANCES_0_NAME. Metrics index 0 may also be omitted: CONFIG_INSTANCES_0_METRICS_URL equals CONFIG_INSTANCES_0_METRICS_0_URL, and CONFIG_INSTANCE_METRICS_URL applies both shorthands. Do not set equivalent forms together.
  • Secrets accept a direct string or exactly one env: NAME / file: PATH reference. Secret overrides also accept _FILE.
  • Initial direct secret overrides are stored as environment references, never plaintext. Persisted secret references still require their environment variable.

Server, storage, UI, and updates

YAML fieldDefaultPurposeEnvironment override
server.port3000HTTP listen port.CONFIGSERVERPORT
server.basePath""Optional URL prefix such as /crowdsec; no trailing slash.CONFIGSERVERBASEPATH
storage.dataDir/app/dataSQLite database and persistent application state.CONFIGSTORAGEDATADIR
storage.geonamesDir/app/geonames in Docker; ./geonames locallyLocal GeoNames snapshot used for location labels.CONFIGSTORAGEGEONAMESDIR
storage.walEnabledtrueEnables SQLite write-ahead logging. Set to false for filesystems that do not support WAL.CONFIGSTORAGEWALENABLED
ui.timeZonebrowserBrowser timezone or an IANA zone such as Europe/Berlin or UTC.CONFIGUITIMEZONE
ui.timeFormatbrowserClock format: browser, 12h, or 24h.CONFIGUITIMEFORMAT
ui.readOnlyfalseHides management actions and rejects mutating API operations.CONFIGUIREADONLY
updates.enabledtrue in packaged imagesEnables the built-in update check.CONFIGUPDATESENABLED

Authentication

YAML fieldDefaultPurposeEnvironment override
auth.enabledautoEnables authentication; auto enables new databases while preserving migrated database state.CONFIGAUTHENABLED
auth.sessionSecretGenerated and storedSigns sessions and encrypts saved authentication settings.CONFIGAUTHSESSIONSECRET or CONFIGAUTHSESSIONSECRETFILE
auth.totpSecretsessionSecretEncrypts stored per-account TOTP seeds.CONFIGAUTHTOTPSECRET or CONFIGAUTHTOTPSECRETFILE
auth.totpSeedUnsetOptional base32 fallback TOTP seed for the password user; minimum 26 characters.CONFIGAUTHTOTPSEED or CONFIGAUTHTOTPSEEDFILE
auth.oidc.issuerUrlUnsetOIDC provider issuer URL.CONFIGAUTHOIDCISSUERURL
auth.oidc.clientIdUnsetOIDC client identifier.CONFIGAUTHOIDCCLIENTID
auth.oidc.clientSecretUnsetOIDC client secret.CONFIGAUTHOIDCCLIENTSECRET or CONFIGAUTHOIDCCLIENTSECRETFILE
auth.oidc.scopeopenid profile emailRequested OIDC scopes; must include openid.CONFIGAUTHOIDCSCOPE
auth.oidc.groupsClaimgroupsClaim containing role-mapping groups.CONFIGAUTHOIDCGROUPSCLAIM
auth.oidc.adminGroupsGroups granted administrator access.CONFIGAUTHOIDCADMINGROUPS or CONFIGAUTHOIDCADMINGROUPS<INDEX>
auth.oidc.readOnlyGroupsGroups granted read-only access.CONFIGAUTHOIDCREADONLYGROUPS or CONFIGAUTHOIDCREADONLYGROUPS<INDEX>
auth.oidc.unmatchedRoledenyRole for unmatched OIDC users: deny, admin, or read-only.CONFIGAUTHOIDCUNMATCHEDROLE

Notifications

YAML fieldDefaultPurposeEnvironment override
notifications.secretKeyGenerated and storedEncrypts saved notification credentials.CONFIGNOTIFICATIONSSECRETKEY or CONFIGNOTIFICATIONSSECRETKEYFILE
notifications.allowPrivateAddressestrueAllows private, loopback, and link-local notification destinations.CONFIGNOTIFICATIONSALLOWPRIVATEADDRESSES
notifications.debugPayloadsfalseLogs truncated rendered payloads after failed notification delivery.CONFIGNOTIFICATIONSDEBUGPAYLOADS

Alert handling

Omitting crowdsec.alertFilters uses the standard non-CAPI feed. Setting any explicit filter field enables explicit filtering.
YAML fieldDefaultPurposeEnvironment override
crowdsec.simulationsEnabledfalseIncludes simulation-mode alerts and decisions.CONFIGCROWDSECSIMULATIONSENABLED
crowdsec.alertFilters.includeOriginsKeeps alerts matching these exact origins.CONFIGCROWDSECALERTFILTERSINCLUDEORIGINS or CONFIGCROWDSECALERTFILTERSINCLUDEORIGINS<INDEX>
crowdsec.alertFilters.excludeOriginsDrops alerts matching these exact origins.CONFIGCROWDSECALERTFILTERSEXCLUDEORIGINS or CONFIGCROWDSECALERTFILTERSEXCLUDEORIGINS<INDEX>
crowdsec.alertFilters.includeCapifalseAdds the Central API/community-blocklist feed.CONFIGCROWDSECALERTFILTERSINCLUDECAPI
crowdsec.alertFilters.includeOriginEmptyfalseKeeps empty-origin alerts with explicit include filters.CONFIGCROWDSECALERTFILTERSINCLUDEORIGINEMPTY
crowdsec.alertFilters.excludeOriginEmptyfalseDrops alerts whose effective origin is empty.CONFIGCROWDSECALERTFILTERSEXCLUDEORIGINEMPTY
crowdsec.alertFilters.legacy.originsCompatibility origin allowlist; CAPI enables the CAPI feed.CONFIGCROWDSECALERTFILTERSLEGACYORIGINS or CONFIGCROWDSECALERTFILTERSLEGACYORIGINS<INDEX>
crowdsec.alertFilters.legacy.extraScenariosCompatibility list of additional scenarios.CONFIGCROWDSECALERTFILTERSLEGACYEXTRASCENARIOS or CONFIGCROWDSECALERTFILTERSLEGACYEXTRASCENARIOS<INDEX>

Global synchronization

Synchronization durations accept ms, s, m, h, or d, for example 500ms, 30s, 5m, or 7d. The lookback fields accept only m, h, or d.
YAML fieldDefaultPurposeEnvironment override
crowdsec.sync.lookback168hImported history and retention window.CONFIGCROWDSECSYNCLOOKBACK
crowdsec.sync.refreshInterval1mActive refresh cadence; 0 or manual disables scheduling.CONFIGCROWDSECSYNCREFRESHINTERVAL
crowdsec.sync.manualRefreshEnabledfalseEnables manual refresh controls.CONFIGCROWDSECSYNCMANUALREFRESHENABLED
crowdsec.sync.idleRefreshInterval10mRefresh cadence while the application is idle; 0 disables it.CONFIGCROWDSECSYNCIDLEREFRESHINTERVAL
crowdsec.sync.idleThreshold2mInactivity before idle refresh behavior begins.CONFIGCROWDSECSYNCIDLETHRESHOLD
crowdsec.sync.requestTimeout30sTimeout for individual LAPI requests.CONFIGCROWDSECSYNCREQUESTTIMEOUT
crowdsec.sync.bouncerPropagationDelay15sGrace period before deleting alerts owned by expired decisions.CONFIGCROWDSECSYNCBOUNCERPROPAGATIONDELAY
crowdsec.sync.deletionQueueMaxAge24hStops retrying failed queued deletions after this age; 0 disables the limit. Tombstones remain until the retention window passes.CONFIGCROWDSECSYNCDELETIONQUEUEMAXAGE
crowdsec.sync.metricsRequestTimeout5sDefault timeout for metrics endpoints.CONFIGCROWDSECSYNCMETRICSREQUESTTIMEOUT
crowdsec.sync.heartbeatInterval30sCrowdSec machine heartbeat cadence; 0 disables it.CONFIGCROWDSECSYNCHEARTBEATINTERVAL
crowdsec.sync.alertSyncChunk12hHistorical import window size.CONFIGCROWDSECSYNCALERTSYNCCHUNK
crowdsec.sync.alertSyncMinChunk15mMinimum retry window after a timed-out import.CONFIGCROWDSECSYNCALERTSYNCMINCHUNK
crowdsec.sync.reconcileWindow1hFixed alert-history reconciliation window size.CONFIGCROWDSECSYNCRECONCILEWINDOW
crowdsec.sync.reconcileRecentAge24hBoundary between recent and older windows.CONFIGCROWDSECSYNCRECONCILERECENTAGE
crowdsec.sync.reconcileRecentInterval15mReconciliation cadence for recent windows.CONFIGCROWDSECSYNCRECONCILERECENTINTERVAL
crowdsec.sync.reconcileActiveInterval5mReconciliation cadence for windows with active decisions.CONFIGCROWDSECSYNCRECONCILEACTIVEINTERVAL
crowdsec.sync.reconcileOldInterval3hReconciliation cadence for older windows.CONFIGCROWDSECSYNCRECONCILEOLDINTERVAL
crowdsec.sync.reconcileWindowsPerRefresh2Maximum due windows processed per refresh.CONFIGCROWDSECSYNCRECONCILEWINDOWSPERREFRESH
crowdsec.sync.bootstrapRetryDelay30sDelay between failed initial-sync retries; 0 retries immediately.CONFIGCROWDSECSYNCBOOTSTRAPRETRYDELAY
crowdsec.sync.bootstrapRetryEnabledtrueEnables background retry after initial synchronization failure.CONFIGCROWDSECSYNCBOOTSTRAPRETRYENABLED

Instances and LAPI

  • <INDEX> is zero-based.
  • ID defaults to the index; name defaults to Instance <INDEX>; authentication type is inferred from credentials.
  • Inferred values appear as comments in initial YAML unless compatibility requires an explicit identity.
  • Explicit IDs use lowercase letters, digits, _, and -. Keep them stable after importing data.

!IMPORTANT Configure exactly one credential shape:
  • Password auth: set username and password
  • mTLS auth: set certFile and keyFile

type is optional and inferred from these fields. Set it explicitly to none, password, or mtls when desired. Do not mix password and mTLS credentials.
Plaintext secrets are supported, but mounted secret files are recommended so credentials do not end up in source control, backups, or configuration-management logs.

YAML fieldDefaultPurposeEnvironment override
instancesOne generated default instanceConfigures one or more CrowdSec connections.CONFIGINSTANCES or CONFIGINSTANCES<INDEX>
instances.idZero-based instance indexStable database identity for the instance.CONFIGINSTANCES<INDEX>ID
instances.nameInstance <INDEX>Unique display name.CONFIGINSTANCES<INDEX>NAME
instances.iconUnsetOptional short text or emoji shown in the selector.CONFIGINSTANCES<INDEX>ICON
instances.lapiRequiredComplete LAPI connection object.CONFIGINSTANCES<INDEX>LAPI
instances.lapi.urlRequired (http://crowdsec:8080 in starter config)Absolute HTTP(S) LAPI base URL without credentials, a path, or a fragment.CONFIGINSTANCES<INDEX>LAPIURL
instances.lapi.authtype: noneLAPI authentication object.CONFIGINSTANCES<INDEX>LAPIAUTH
instances.lapi.auth.typeInferred from credentialsOptional authentication mode: none, password, or mtls.CONFIGINSTANCES<INDEX>LAPIAUTHTYPE
instances.lapi.auth.usernameRequired for passwordCrowdSec machine username.CONFIGINSTANCES<INDEX>LAPIAUTHUSERNAME
instances.lapi.auth.passwordRequired for passwordCrowdSec machine password or secret reference.CONFIGINSTANCES<INDEX>LAPIAUTHPASSWORD or CONFIGINSTANCES<INDEX>LAPIAUTHPASSWORDFILE
instances.lapi.auth.certFileRequired for mtlsClient certificate path.CONFIGINSTANCES<INDEX>LAPIAUTHCERTFILE
instances.lapi.auth.keyFileRequired for mtlsClient private-key path.CONFIGINSTANCES<INDEX>LAPIAUTHKEYFILE
instances.lapi.tlsEmpty mappingLAPI server-trust settings.CONFIGINSTANCES<INDEX>LAPITLS
instances.lapi.tls.caFileUnsetCA bundle used to verify the LAPI server.CONFIGINSTANCES<INDEX>LAPITLSCAFILE
instances.metricsZero or more metrics endpoints.CONFIGINSTANCES<INDEX>METRICS or CONFIGINSTANCES<INDEX>METRICS<METRICINDEX>
instances.syncInherits global valuesPer-instance synchronization overrides.CONFIGINSTANCES<INDEX>SYNC or CONFIGINSTANCES<INDEX>SYNC

Metrics endpoints

  • <INDEX> selects the instance; zero-based <METRIC_INDEX> selects its endpoint.
  • Endpoint ID defaults to <METRIC_INDEX> and name to Metrics <METRIC_INDEX>.
  • Inferred values appear as comments in initial YAML.

YAML fieldDefaultPurposeEnvironment override
instances.metrics.idZero-based metrics indexStable identifier unique within the instance.CONFIGINSTANCES<INDEX>METRICS<METRICINDEX>ID
instances.metrics.nameMetrics <METRICINDEX>Display name.CONFIGINSTANCES<INDEX>METRICS<METRICINDEX>NAME
instances.metrics.urlRequiredAbsolute HTTP(S) Prometheus endpoint URL.CONFIGINSTANCES<INDEX>METRICS<METRICINDEX>URL
instances.metrics.requestTimeoutGlobal 5sRequest timeout for this endpoint.CONFIGINSTANCES<INDEX>METRICS<METRICINDEX>REQUESTTIMEOUT
instances.metrics.authtype: noneComplete metrics authentication object.CONFIGINSTANCES<INDEX>METRICS<METRICINDEX>AUTH
instances.metrics.auth.typeInferred from credentialsOptional authentication mode: none, basic, or bearer.CONFIGINSTANCES<INDEX>METRICS<METRICINDEX>AUTHTYPE
instances.metrics.auth.usernameRequired for basicBasic-auth username.CONFIGINSTANCES<INDEX>METRICS<METRICINDEX>AUTHUSERNAME
instances.metrics.auth.passwordRequired for basicBasic-auth password or secret reference.CONFIGINSTANCES<INDEX>METRICS<METRICINDEX>AUTHPASSWORD or CONFIGINSTANCES<INDEX>METRICS<METRICINDEX>AUTHPASSWORDFILE
instances.metrics.auth.tokenRequired for bearerBearer token or secret reference.CONFIGINSTANCES<INDEX>METRICS<METRICINDEX>AUTHTOKEN or CONFIGINSTANCES<INDEX>METRICS<METRICINDEX>AUTHTOKENFILE
instances.metrics.tlsEmpty mappingMetrics TLS settings.CONFIGINSTANCES<INDEX>METRICS<METRICINDEX>TLS
instances.metrics.tls.caFileUnsetCA bundle used to verify the metrics server.CONFIGINSTANCES<INDEX>METRICS<METRICINDEX>TLSCAFILE
instances.metrics.tls.certFileUnsetOptional metrics client certificate; requires keyFile.CONFIGINSTANCES<INDEX>METRICS<METRICINDEX>TLSCERTFILE
instances.metrics.tls.keyFileUnsetOptional metrics client private key; requires certFile.CONFIGINSTANCES<INDEX>METRICS<METRICINDEX>TLSKEYFILE

Per-instance synchronization overrides

Every field inherits its corresponding global value when omitted.
YAML fieldDefaultPurposeEnvironment override
instances.sync.lookbackGlobal 168hHistory and retention window for this instance.CONFIGINSTANCES<INDEX>SYNCLOOKBACK
instances.sync.refreshIntervalGlobal 1mActive refresh cadence.CONFIGINSTANCES<INDEX>SYNCREFRESHINTERVAL
instances.sync.idleRefreshIntervalGlobal 10mIdle refresh cadence.CONFIGINSTANCES<INDEX>SYNCIDLEREFRESHINTERVAL
instances.sync.idleThresholdGlobal 2mTime before this instance is considered idle.CONFIGINSTANCES<INDEX>SYNCIDLETHRESHOLD
instances.sync.requestTimeoutGlobal 30sLAPI request timeout.CONFIGINSTANCES<INDEX>SYNCREQUESTTIMEOUT
instances.sync.heartbeatIntervalGlobal 30sMachine heartbeat cadence.CONFIGINSTANCES<INDEX>SYNCHEARTBEATINTERVAL
instances.sync.alertSyncChunkGlobal 12hHistorical import window size.CONFIGINSTANCES<INDEX>SYNCALERTSYNCCHUNK
instances.sync.alertSyncMinChunkGlobal 15mMinimum retry window.CONFIGINSTANCES<INDEX>SYNCALERTSYNCMINCHUNK
instances.sync.reconcileWindowGlobal 1hReconciliation window size.CONFIGINSTANCES<INDEX>SYNCRECONCILEWINDOW
instances.sync.reconcileRecentAgeGlobal 24hRecent-window age boundary.CONFIGINSTANCES<INDEX>SYNCRECONCILERECENTAGE
instances.sync.reconcileRecentIntervalGlobal 15mRecent-window reconciliation cadence.CONFIGINSTANCES<INDEX>SYNCRECONCILERECENTINTERVAL
instances.sync.reconcileActiveIntervalGlobal 5mActive-decision reconciliation cadence.CONFIGINSTANCES<INDEX>SYNCRECONCILEACTIVEINTERVAL
instances.sync.reconcileOldIntervalGlobal 3hOlder-window reconciliation cadence.CONFIGINSTANCES<INDEX>SYNCRECONCILEOLDINTERVAL
instances.sync.reconcileWindowsPerRefreshGlobal 2Due-window budget per refresh.CONFIGINSTANCES<INDEX>SYNCRECONCILEWINDOWSPERREFRESH
instances.sync.bootstrapRetryDelayGlobal 30sInitial-sync retry delay.CONFIGINSTANCES<INDEX>SYNCBOOTSTRAPRETRYDELAY
instances.sync.bootstrapRetryEnabledGlobal trueEnables background initial-sync retry.CONFIGINSTANCES<INDEX>SYNCBOOTSTRAPRETRYENABLED
instances.sync.bouncerPropagationDelayGlobal 15sAlert-deletion grace period.CONFIGINSTANCES<INDEX>SYNCBOUNCERPROPAGATIONDELAY

Multiple CrowdSec instances

Use zero-based CONFIG_INSTANCES_<INDEX>_* overrides to define each instance. Indexes must be contiguous, starting at 0.
services:
  crowdsec-web-ui:
    image: ghcr.io/theduffman85/crowdsec-web-ui:latest
    environment:
      CONFIG_INSTANCES_0_ID: eu-prod
      CONFIG_INSTANCES_0_NAME: EU Production
      CONFIG_INSTANCES_0_LAPI_URL: http://crowdsec-eu:8080
      CONFIG_INSTANCES_0_LAPI_AUTH_USERNAME: crowdsec-web-ui
      CONFIG_INSTANCES_0_LAPI_AUTH_PASSWORD_FILE: /run/secrets/eu-lapi-password
      CONFIG_INSTANCES_0_METRICS_0_ID: lapi
      CONFIG_INSTANCES_0_METRICS_0_NAME: EU LAPI
      CONFIG_INSTANCES_0_METRICS_0_URL: http://crowdsec-eu:6060/metrics

      CONFIG_INSTANCES_1_ID: us-prod
      CONFIG_INSTANCES_1_NAME: US Production
      CONFIG_INSTANCES_1_LAPI_URL: http://crowdsec-us:8080
      CONFIG_INSTANCES_1_LAPI_AUTH_USERNAME: crowdsec-web-ui
      CONFIG_INSTANCES_1_LAPI_AUTH_PASSWORD_FILE: /run/secrets/us-lapi-password

      # For mTLS, replace instance 1's URL and password credentials above with:
      # CONFIG_INSTANCES_1_LAPI_URL: https://crowdsec-us:8080
      # CONFIG_INSTANCES_1_LAPI_AUTH_TYPE: mtls
      # CONFIG_INSTANCES_1_LAPI_AUTH_CERT_FILE: /certs/us-client-cert.pem
      # CONFIG_INSTANCES_1_LAPI_AUTH_KEY_FILE: /run/secrets/us-client-key.pem
      # CONFIG_INSTANCES_1_LAPI_TLS_CA_FILE: /certs/us-ca.pem
    volumes:
      - ./secrets/eu-lapi-password:/run/secrets/eu-lapi-password:ro
      - ./secrets/us-lapi-password:/run/secrets/us-lapi-password:ro
      # Mount these files when using the commented mTLS configuration:
      # - ./certs/us-client-cert.pem:/certs/us-client-cert.pem:ro
      # - ./secrets/us-client-key.pem:/run/secrets/us-client-key.pem:ro
      # - ./certs/us-ca.pem:/certs/us-ca.pem:ro

  • Use indexed variables for every instance in a multi-instance setup; reserve the CONFIG_INSTANCE_* shorthand for single-instance deployments.
  • Each instance needs a stable ID, unique display name, LAPI URL, and one authentication method.
  • Add metrics endpoints with CONFIG_INSTANCES_<INDEX>_METRICS_<METRIC_INDEX>_*.
  • Mount password files read-only. When using the optional mTLS configuration, mount its private keys and certificates read-only as well, then restart the container.

YAML alternative

Add entries to the top-level instances array. Each entry defines one LAPI connection and zero or more metrics endpoints.
instances:
  - id: eu-prod
    name: EU Production
    icon: 🇪🇺
    lapi:
      url: http://crowdsec-eu:8080
      auth:
        type: password
        username: crowdsec-web-ui
        password:
          file: /run/secrets/eu-lapi-password

    metrics:
      - id: lapi
        name: EU LAPI
        url: http://crowdsec-eu:6060/metrics
        auth:
          type: bearer
          token:
            file: /run/secrets/eu-metrics-token

      - id: edge-engine
        name: EU Edge Engine
        url: http://crowdsec-edge:6060/metrics

    sync:
      requestTimeout: 45s
      alertSyncChunk: 6h

  - id: us-prod
    name: US Production
    icon: 🇺🇸
    lapi:
      url: http://crowdsec-us:8080
      auth:
        type: password
        username: crowdsec-web-ui
        password:
          file: /run/secrets/us-lapi-password
      # For mTLS, replace url and auth above with:
      # url: https://crowdsec-us:8080
      # auth:
      #   type: mtls
      #   certFile: /run/secrets/us-client-cert
      #   keyFile: /run/secrets/us-client-key
      # tls:
      #   caFile: /run/secrets/us-ca

Configuration rules

  • Instance and endpoint IDs are unique, URL-safe, and immutable database identities. They are 1–63 characters long, start with a lowercase letter or digit, use only lowercase letters, digits, _, or -, and must never be reused for another LAPI.
  • Display names are unique but editable. icon accepts up to eight Unicode code points of text or emoji without control characters; omitted icons use colored squares and Combined uses a grid.
  • Password secrets accept a direct value or exactly one env/file source. mTLS requires both certFile and keyFile; tls.caFile controls server trust.
  • Metrics authentication supports none, basic, and bearer; metrics TLS supports caFile plus an optional complete client certificate/key pair.
  • Embedded URL credentials, URL fragments, ambiguous secret sources, partial certificate pairs, unreadable files, and TLS verification bypasses fail validation. LAPI base URLs also reject paths.
  • Prefer mounted secret files. Restart after configuration, certificate, or secret changes.

Multi-instance behavior

AreaBehavior
Dashboard, Alerts, DecisionsSupport one instance or Combined scope
MetricsAlways uses one instance and endpoint; process-local counters are not summed
Add decision / clean IPRuns against every LAPI in Combined scope and reports partial failures
Row deletionUses the row's owning instance; numeric upstream IDs are never broadcast

Authentication

Authentication covers the browser UI and protected APIs; /api/health remains public.
auth.enabledBehavior
autoEnables authentication for new databases; preserves the state of migrated databases
trueRequires authentication and initial administrator setup
falseDisables authentication; this deployment setting is not available in the UI

Upgraded installations

Enable authentication explicitly on installations migrated from older releases.
auth:
  enabled: true

Local accounts

  • Password changes and passkey registration/removal from Settings.
  • Optional TOTP enrollment through a QR code, mobile setup link, or manual key.
  • An enrolled TOTP seed overrides the optional base32 auth.totpSeed fallback.
  • Administrators can disable password login.

OIDC

Configure OIDC in Settings or YAML.
auth:
  enabled: true
  oidc:
    issuerUrl: https://idp.example.com/application/o/crowdsec-web-ui/
    clientId: crowdsec-web-ui
    clientSecret:
      file: /run/secrets/oidc_client_secret
    scope: openid profile email
    groupsClaim: groups
    adminGroups: [crowdsec-admins, secops]
    readOnlyGroups: [crowdsec-viewers]
    unmatchedRole: deny

Callback URL

Register this callback URI with the identity provider.
https://<crowdsec-web-ui-host>/api/auth/oidc/callback

Requirements and roles

  • The callback must exactly match the public scheme, host, port, and base path. For basePath: /crowdsec, use https://<host>/crowdsec/api/auth/oidc/callback.
  • Reverse proxies must forward Host or X-Forwarded-Host and X-Forwarded-Proto.
  • Saved Settings override YAML. Scopes must include openid; add provider-specific scopes such as groups only when required.
  • Admin-group matches have full access; read-only-group matches can view data and keep permitted preferences; unmatched users follow auth.oidc.unmatchedRole (deny by default).
  • Set an unmatched fallback role only when every user who can sign in should receive it.
  • ui.readOnly: true overrides all roles for the deployment. It blocks CrowdSec writes, refresh changes, notification destination/rule management, test sends, and notification deletion. Language changes and marking notifications read remain available. This is not per-user RBAC.
  • Identities use stable issuer and subject claims. Username collisions with local accounts remain separate.
  • Sessions have a 24-hour absolute lifetime. OIDC-only users cannot add local passkeys; password-backed local accounts retain passkey support.
  • Existing OIDC rows migrate on their next successful SSO login.

Deployment and Security

Trusted IPs for Alert Deletion

!IMPORTANT CrowdSec only permits alert deletion when the request comes from loopback or an address listed in api.server.trusted_ips. Registering the Web UI as a CrowdSec machine authenticates it, but does not grant this IP-based permission.

When the Web UI runs in Docker, add the Web UI container's source IP or, preferably, its Docker network CIDR to CrowdSec's /etc/crowdsec/config.yaml. This is not the browser's IP or the Docker host's public IP. Without this entry, decision operations can still work while alert deletion fails with 403 Forbidden.
api:
  server:
    trusted_ips:
      - 127.0.0.1
      - ::1
      - 172.16.0.0/12  # Docker default bridge network

Use the narrowest CIDR that contains the Web UI container and LAPI network. Container IPs can change when containers are recreated, so the Docker network CIDR is usually more reliable than one container IP. Restart CrowdSec after updating the file. The current CrowdSec container does not provide a TRUSTED_IPS environment override. See the CrowdSec configuration reference.

Local or Custom LAPI Certificate

A self-signed certificate or internal CA may produce the following error.
Login failed: unable to get local issuer certificate

Mount the CA certificate and configure it for the LAPI instance.
services:
  crowdsec-web-ui:
    image: ghcr.io/theduffman85/crowdsec-web-ui:latest
    container_name: crowdsec_web_ui
    ports:
      - "3000:3000"
    environment:
      CONFIG_INSTANCE_LAPI_URL: https://crowdsec:8080
      CONFIG_INSTANCE_LAPI_AUTH_USERNAME: crowdsec-web-ui
      CONFIG_INSTANCE_LAPI_AUTH_PASSWORD_FILE: /run/secrets/crowdsec_password
      CONFIG_INSTANCE_LAPI_TLS_CA_FILE: /certs/root_ca.crt
    secrets:
      - crowdsec_password
    volumes:
      - ./data:/app/data
      - /path/on/host/root_ca.crt:/certs/root_ca.crt:ro
    restart: unless-stopped

secrets:
  crowdsec_password:
    file: ./secrets/crowdsec_password.txt

Keep the CA mount read-only. CONFIG_INSTANCE_LAPI_TLS_CA_FILE maps to instances[0].lapi.tls.caFile; no image rebuild is needed.

HTTPS Reverse Proxy

CrowdSec Web UI listens for HTTP on port 3000 and does not obtain or terminate TLS certificates itself. Put a reverse proxy in front of it for HTTPS deployments and keep port 3000 private to the proxy.
HTTPS is required for passkeys because browsers expose WebAuthn only in a secure context. http://localhost is suitable for local testing, but a remote deployment needs a stable hostname and a certificate trusted by the browser. Passkeys registered for one hostname cannot be used from a different hostname.
The proxy must preserve Host (or set X-Forwarded-Host) and set X-Forwarded-Proto to the original scheme. The application uses these headers for WebAuthn origins, secure session cookies, OIDC callback URLs, and mutation-origin checks.

Traefik example

This minimal example assumes Traefik already has a websecure entrypoint, a Let's Encrypt resolver named letsencrypt, and an external Docker network named proxy. Add the labels and proxy network to the existing Web UI service, replacing the hostname and CrowdSec settings.
services:
  crowdsec-web-ui:
    image: ghcr.io/theduffman85/crowdsec-web-ui:latest
    expose:
      - "3000"
    environment:
      CONFIG_INSTANCE_LAPI_URL: http://crowdsec:8080
      CONFIG_INSTANCE_LAPI_AUTH_USERNAME: crowdsec-web-ui
      CONFIG_INSTANCE_LAPI_AUTH_PASSWORD: your-crowdsec-password
      # For https://crowdsec.example.com/crowdsec/:
      # CONFIG_SERVER_BASE_PATH: /crowdsec
    volumes:
      - ./data:/app/data
    labels:
      - traefik.enable=true
      - traefik.docker.network=proxy
      # For /crowdsec/, append: && PathPrefix(`/crowdsec`)
      - 'traefik.http.routers.crowdsec-web-ui.rule=Host(`crowdsec.example.com`)'
      - traefik.http.routers.crowdsec-web-ui.entrypoints=websecure
      - traefik.http.routers.crowdsec-web-ui.tls.certresolver=letsencrypt
      - traefik.http.services.crowdsec-web-ui.loadbalancer.server.port=3000
    networks:
      - proxy
      - crowdsec
    restart: unless-stopped

networks:
  proxy:
    external: true
  crowdsec:
    external: true
    name: your_crowdsec_network

Traefik supplies the forwarded headers and WebSocket upgrade handling automatically. See the Traefik ACME documentation if the letsencrypt resolver is not configured yet.

Nginx example

This equivalent example assumes Nginx already terminates HTTPS and the Web UI port is published only on loopback, for example 127.0.0.1:3000:3000.
# For https://crowdsec.example.com/crowdsec/, set
# CONFIG_SERVER_BASE_PATH=/crowdsec and replace both `/` paths below
# with `/crowdsec/`.
location / {
    proxy_pass http://localhost:3000/;
    proxy_http_version 1.1;
    proxy_set_header Host $host;
    proxy_set_header X-Forwarded-Host $http_host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
}

Proxy requirements

  • The base path starts with / and has no trailing slash.
  • / redirects to it; APIs, assets, and navigation follow it automatically.
  • With Traefik on a shared hostname, add CONFIG_SERVER_BASE_PATH: /crowdsec and use a router rule such as `Host(example.com) && PathPrefix(/crowdsec). Do not configure StripPrefix`; the application expects to receive the base path.
  • The backend checks browser mutation origins, applies a Content Security Policy, limits API bodies to 1 MiB, and marks API responses private, no-store.
  • Command-line and service clients without browser Origin and Sec-Fetch-Site headers remain compatible.
  • Configure HSTS at the TLS-terminating proxy; the application does not emit it.

Health Check

The public endpoint is GET /api/health. Startup does not wait for LAPI: bootstrap retries in the background, so the container can become healthy before synchronization completes.
curl http://localhost:3000/api/health
# {"status":"ok"}

The built-in check runs every 30 seconds with a five-second timeout, a 10-second start period, and three retries.
docker inspect --format='{{.State.Health.Status}}' crowdsec_web_ui

server.basePath does not affect the internal check at localhost:3000/api/health. If server.port changes, update the health-check command and port mapping.

Runtime Behavior

Prometheus Metrics Page

  • Reads a configured raw CrowdSec Prometheus endpoint. The Web UI does not configure one by default; CrowdSec normally exposes its local scrape at http://127.0.0.1:6060/metrics.
  • Shows remediation-component and log-processor LAPI activity, AppSec, parsers and datasources, scenarios, LAPI latency, parsing time, and whitelist hits. Log-processor activity uses POST /v1/alerts; CrowdSec builds that expose an exact last-heartbeat timestamp also provide the processor health badge.
  • Alert and decision analytics remain on the main dashboard.

Enable full metrics in CrowdSec's /etc/crowdsec/config.yaml.
prometheus:
  enabled: true
  level: full
  listen_addr: 127.0.0.1
  listen_port: 6060

For separate containers, bind listen_addr: 0.0.0.0 on a trusted network, then configure the matching Web UI instance.
environment:
  CONFIG_INSTANCE_METRICS_URL: http://crowdsec:6060/metrics

CrowdSec levelResult
fullAll supported details, including per-machine, per-bouncer, and per-node metrics
aggregatedLess detail; omits those per-entity metrics
noneDisables metrics registration

AppSec and latency sections appear only when CrowdSec emits those metrics. Time-window-only rate()/increase() metrics are intentionally omitted. See the CrowdSec Prometheus documentation.

Display Preferences

  • crowdsec.simulationsEnabled: true fetches non-remediating simulation alerts/decisions and shows badges, filters, and dashboard counts. Default: false.
  • Alerts and Decisions column layouts persist per browser profile in local storage.
  • ID, Machine, and Origin are hidden by default. Machine prefers machine_alias, then machine_id; multiple alert decision origins display as Mixed.
  • Hidden columns remain searchable through fields such as id:, machine:, and origin:.

Quick Filters

Dashboard, Alerts, and Decisions share one count-aware Quick Filters drawer. Its trigger shows the number of active selections, and the clear control in the drawer header resets all stored quick filters.
Instance and machine options use stable IDs for filtering while displaying their configured names or aliases. Country, instance, and machine searches match the displayed label as well as the stored value. Alerts with several origins or targets contribute to each distinct facet option instead of exposing a combined bucket.
  • Filter selections, date range, and simulation mode persist in local storage for the current browser profile and are restored when navigating between the three pages.
  • Changing a structured search field updates the matching quick-filter selection, and changing a quick filter updates the structured search. A field supplied explicitly in a page URL takes precedence over its stored value; stored values fill fields that are absent.
  • Dashboard top countries, scenarios, AS numbers, targets, the world map, and the Activity History range update the same shared state. Changes made in the drawer update those widgets in return.
  • Filtered Dashboard alert and active-decision counts use the same indexed predicates as the Alerts and Decisions lists. The alert card links with the alert-compatible query, while the decision card links with the decision-compatible query.
  • The drawer follows each table's configured column order. Filters for hidden columns are grouped under Hidden columns.
  • Page-only filters remain visible under Unavailable when another page cannot apply them. Alerts lists Action, Status, and Alert there; Decisions lists Decision; Dashboard lists all four. Their stored selections are preserved for the page that supports them and can be cleared from any drawer.
  • Facet selections use exact equality. Selecting the target tausend.me generates target=tausend.me and does not include bw.tausend.me. Manually entering target:tausend.me remains a broader contains search.
  • Each facet reports counts after the other active filters have been applied. Use the facet search control to find values beyond the initially loaded list.

Dashboard applies the shared fields Country, Scenario, AS, IP / Range, Target, ID, Instance, Region, City, Machine, and Origin. Filters that depend on decision-only or alert-list-only data are retained in Unavailable instead of being silently discarded.
Active decisions are deduplicated by instance, value, and simulation mode. When filters exclude the globally preferred decision, the best matching decision is promoted so enabling Hide duplicates cannot make an otherwise matching duplicate group disappear.

Search Syntax

SyntaxExample
Free text / quoted phrasessh hetzner, "nginx bf"
Field contains / exact valuecountry:germany, country=DE
Date comparisondate>=2026-03-24, date<2026-03-25T12:00:00Z
Negative / empty-sim:simulated, sim<>simulated, origin:"", origin<>""
Boolean / groupingcountry:(germany OR france) AND -sim:simulated
Decision filtersstatus:active AND action:ban, alert:123 OR ip:"192.168.5.0/24"

The : operator performs a case-insensitive contains match, while = matches the complete field value. Quick Filter selections use =. Date fields support <, >, <=, >=, and =>. A bare field name is free text unless followed by :. Quote literal AND, OR, or NOT. The search Info button lists page-specific fields and examples.

Examples

PageQuery
Alertscountry:germany ssh
Alertsdate>=2026-03-24 AND date<2026-03-25
Alertscountry:(germany OR france) AND -sim:simulated
Alertsorigin:""
Decisionsstatus:active AND action:ban
Decisionsdate>=2026-03-24 AND action:ban
Decisionsalert:123 OR ip:"192.168.5.0/24"

Alert Source Filtering

Limit the local cache by origin when CrowdSec ingests automation, blocklists, or community feeds.
crowdsec:
  alertFilters:
    includeOrigins: [crowdsec, cscli-import]
    excludeOrigins: [cscli]
    includeCapi: true
    includeOriginEmpty: true
    excludeOriginEmpty: false

OriginSource
crowdsecSecurity-engine decisions
cscliManual cscli decisions add
cscli-importcscli decisions import
listsImported list feeds
CAPICentral API / community blocklist

Behavior

  • No explicit filters fetches the normal non-CAPI/non-lists feed.
  • Includes are pushed upstream where possible. Generic excludes and empty-origin handling run locally because LAPI lacks those filters.
  • includeCapi: true adds CAPI to the default feed; includeOrigins: [CAPI] selects only CAPI.
  • If any origin is excluded, the whole alert is dropped.
  • Origins prefer associated decisions, then blocklist/list source scopes for alerts without decisions.
  • includeOriginEmpty retains origin-less alerts alongside includes; excludeOriginEmpty removes them.
  • Because Decisions is built from synchronized alerts, filters also change which imported decisions appear.

Examples

SettingResult
includeOrigins: crowdsecKeeps security-engine alerts only
includeOrigins: listsKeeps list-based alerts only
includeCapi: trueAdds CAPI to the default feed
includeOrigins: CAPIKeeps CAPI alerts only
includeOriginEmpty: trueKeeps origin-less alerts alongside explicit includes
excludeOriginEmpty: trueRemoves origin-less alerts
excludeOrigins: cscli, listsRemoves manual and imported-list alerts

Notifications

Rules run against locally cached CrowdSec data, create in-app notifications, record delivery status, and optionally deliver outbound messages.

Rules

Every rule has a name, severity (info, warning, critical), incident deduplication, and destination channels. Alert rules filter scenario, target, and simulation state; IP Ban and New Alert/Decision also accept exact IP/CIDR filters.
Rule typeBehavior
Alert SpikeCompares the current window with the previous window and triggers when percentage increase and minimum alert count are exceeded.
Alert ThresholdTriggers when matching alerts in the configured time window reach the threshold.
New Alert/DecisionCreates one notification for every matching alert, decision, or both within the lookback window. Includes record ID, timestamps, scenario, target, source/value, and related alert/decision details. Stable per-record deduplication prevents repeats.
IP BanTriggers once for each active ban decision in the configured window, supports exact IP/CIDR filters, and deduplicates duplicate active decision rows for the same ban.
Recent CVEExtracts CVE IDs from matching alerts and checks publication age before notifying.
LAPI AvailabilityTriggers when CrowdSec LAPI stays unavailable past the outage threshold, with optional recovery notifications.
Application UpdateUses the built-in update check and triggers when a newer CrowdSec Web UI version is available.

Multi-instance behavior

ScopeRules
Aggregate matching alerts across instancesAlert Spike, Alert Threshold, Recent CVE
Evaluate each matching recordNew Alert/Decision, IP Ban
Evaluate each instanceLAPI Availability
Application-wideApplication Update

Instance-backed titles and metadata identify the contributing instance or instances.
!NOTE The Recent CVE rule queries the NVD API to determine when a CVE was published. If outbound access to services.nvd.nist.gov is blocked, recent-CVE notifications may be skipped.

Destinations

Destinations are independently enabled and reusable across rules. Send Test validates saved settings immediately; results are stored as delivered or failed.
DestinationSettings
EmailSMTP host/port/security (Plain SMTP, STARTTLS, SMTPS / Implicit TLS), optional user/password, from address, comma-separated recipients, importance (auto, normal, important), and optional insecure TLS for trusted self-signed SMTP endpoints. Auto importance maps info to normal and warning/critical to important.
GotifyGotify URL, app token, and priority (auto or explicit integer). Auto priority maps info to 5, warning to 7, and critical to 10.
ntfyServer URL, topic, optional access token, and priority (auto, min, low, default, high, urgent). Auto priority maps info to default, warning to high, and critical to urgent.
MQTTGeneric publish-only output with broker URL, optional username/password/client ID, QoS 0 or 1, keepalive, connect timeout, topic, and retain flag. It does not include Home Assistant discovery, entity sync, or command handling.
WebhookCustom HTTP delivery with method (POST, PUT, PATCH), URL, optional query parameters/headers, auth (none, bearer token, or basic auth), body mode (JSON, Text, Form), timeout, retries, retry delay, and optional insecure TLS for trusted self-signed HTTPS endpoints.

Payloads and security

  • MQTT JSON contains title, message, severity, metadata, sent_at, channel_id, channel_name, channel_type, rule_id, rule_name, and rule_type. Tests use rule_id=test, rule_name=Test notification, and rule_type=test.
  • Webhook templates expose dotted event.* fields for title, message, severity, metadata, sent_at, channel_name, rule_id, rule_name, and rule_type. Each has a *Json variant; nullable rule fields also have OrUnknown and OrUnknownJson aliases.
  • Failed webhooks store HTTP status and a truncated response. notifications.debugPayloads: true also logs a truncated rendered body with sensitive form fields redacted; enable it only while troubleshooting.
  • Destination secrets are masked and encrypted by notifications.secretKey, or an auto-generated key stored in application metadata.
  • notifications.allowPrivateAddresses: false blocks private, loopback, and link-local destinations; default: true.
  • Telegram, Home Assistant discovery/state, and inbound MQTT commands are not supported.

Kubernetes

A Helm chart for CrowdSec Web UI is maintained by zekker6.

Persistence and Alert History

SQLite data lives under /app/data. Mount the directory—not only crowdsec.db—because WAL mode also uses crowdsec.db-wal and crowdsec.db-shm.
volumes:
  - ./data:/app/data

  • History survives restarts, merges with new LAPI data, and expires after crowdsec.sync.lookback (default: seven days).
  • Initial imports and reconciliation retry in smaller windows after timeouts.
  • During LAPI outages, the application serves its available cache and retries in the background; partial imports are marked.

Use POST /api/cache/clear for a full cache reset. Synchronization internals are documented in DEVELOPMENT.md.

Documentation

GuideContents
Configuration exampleComplete commented YAML configuration
API referenceAuthentication, routes, parameters, and request/response shapes
Development guideLocal setup, builds, tests, metadata, translations, and synchronization internals
Load testing guideSynthetic profiles, overrides, benchmarks, and container workflow

Star History

Star History Chart

Related Projects

<td width="80" align="center" valign="middle">
  <a href="https://github.com/TheDuffman85/linux-update-dashboard">
    <img src="https://raw.githubusercontent.com/TheDuffman85/linux-update-dashboard/main/assets/logo.svg" alt="Linux Update Dashboard Logo" width="56" />
  </a>
</td>
<td valign="middle">
  <a href="https://github.com/TheDuffman85/linux-update-dashboard"><strong>Linux Update Dashboard</strong></a><br />
  A self-hosted dashboard for checking and applying Linux package updates across multiple servers.
</td>

Check the logs first

Nine times out of ten the logs tell you exactly what went wrong.

  • In Portainer, go to Containers, click the container, then Logs. Or run docker logs <container>
  • Exit codes help too: 137 means killed, usually out of memory. 126 or 127 means the command inside the image is broken.

Permission denied on volumes

If the logs show "permission denied", the app can't write to its data folder on the host.

  • Fix the ownership: sudo chown -R 1000:1000 /portainer/Files/AppData/Config/crowdsec-web-ui/data

Image won't pull

Test the pull directly on the host: docker pull ghcr.io/theduffman85/crowdsec-web-ui:latest

  • "manifest unknown" means the tag no longer exists. This template uses latest, so try pinning a specific version instead.
  • "toomanyrequests" is the Docker Hub rate limit. Log in with docker login to raise it.
  • "no space left on device" means a full disk. Reclaim space with docker system prune

"exec format error"

This means the image was built for a different CPU architecture than your server.

  • This image supports: amd64, arm64
  • Check yours with uname -m: x86_64 is amd64, aarch64 is arm64. Raspberry Pi and other ARM boards are the usual culprits.

Container keeps restarting

The unless-stopped restart policy relaunches the app after every crash, so the real error can scroll past.

  • Check the logs right after a restart, the last few lines before it died are the useful ones.
  • Get the exit code with docker inspect <container> --format '{{.State.ExitCode}}'
  • Still stuck? Redeploy once with the restart policy set to no so the failure stays visible.

Stack won't deploy

Compose stacks fail fast on small mistakes, and Portainer shows the reason just above the editor.

  • YAML only accepts spaces for indentation, a single tab breaks the whole file.

Raise an issue

Found something which isn't working as it should? Here's how to report it.

A Compose stack

Crowdsec WEB UI is a Compose stack, a set of containers defined in one file and brought up together by Portainer, then started and stopped as a single app.

The app image

An image is the app packed up ready to go, everything Crowdsec WEB UI needs bundled into one download. This template pulls ghcr.io/theduffman85/crowdsec-web-ui:latest, which Docker fetches once (about 131 MB) and then starts your own copy from.

Where the image comes from

Docker pulls its images from registries, public libraries of ready-built apps. Crowdsec WEB UI's comes from the GitHub Container Registry, published by theduffman85.

Version tags

The bit after the colon in the image name is the version tag. Here it's latest, which always points at the newest build, so a redeploy can bump you to a newer release without you asking. Pin a specific tag if you would rather stay on one version.

Which machines it runs on

Every image is built for particular CPU types. This one ships for amd64, arm64, so it runs on both regular x86 servers and ARM boards like a Raspberry Pi.

Volumes

A volume is where Crowdsec WEB UI keeps its files so they survive an update or a restart. Without one, anything it saves would sit inside the container and vanish the moment it's recreated. This template mounts:

  • /app/data from /portainer/Files/AppData/Config/crowdsec-web-ui/data on the host

Environment variables

Environment variables are the settings you hand over when you deploy, things like a password or a timezone. Crowdsec WEB UI takes 9 of them, all with defaults you can leave alone or tweak:

  • CROWDSEC_URL, defaults to http://crowdsec:8080
  • CROWDSEC_USER, defaults to crowdsec-web-ui
  • CROWDSEC_PASSWORD, pulled from your own environment
  • CROWDSEC_LOOKBACK_PERIOD, defaults to 168h
  • CROWDSEC_REFRESH_INTERVAL, defaults to 30s
  • CROWDSEC_IDLE_REFRESH_INTERVAL, defaults to 5m
  • CROWDSEC_IDLE_THRESHOLD, defaults to 2m
  • CROWDSEC_FULL_REFRESH_INTERVAL, defaults to 5m
  • BASE_PATH, pulled from your own environment

Restart policy

The restart policy here is unless-stopped, so Docker restarts Crowdsec WEB UI after a crash or reboot, but leaves it off when you stop it on purpose. You can change this on the deploy screen. The choices are no (never restart), on-failure (only after a crash), unless-stopped (restart unless you stop it), and always (bring it back no matter what).

Networking

Nothing custom is set, so Crowdsec WEB UI sits on Docker's default bridge network: its own private space that reaches the outside world only through the ports it publishes.

Container name

Once it's deployed, Portainer names the container crowdsec-web-ui. That's what you'll spot in the containers list and use in commands like docker logs crowdsec-web-ui.

Platform

The platform is linux, the kind of system the container is built to run on. Docker and Portainer handle this on a normal Linux server.

Open source license

Crowdsec WEB UI is open source, released under the AGPL-3.0 license. In plain terms the code is out in the open, so you're free to run it and change it to fit what you need.

Portainer app templates

Zooming out, this whole page comes from a Portainer app template: a short recipe telling Portainer how to set Crowdsec WEB UI up. Add the template list to Portainer once, then deploying Crowdsec WEB UI is a click rather than a wall of config.