mirror of
https://github.com/aykhans/my-self-host-services.git
synced 2026-05-29 15:35:59 +00:00
23 lines
972 B
Bash
23 lines
972 B
Bash
############# Bouncer keys #############
|
|
# Generate with: openssl rand -hex 32
|
|
# These are PRE-SEEDED into CrowdSec on first boot. Use the same value here
|
|
# and in caddy/.env (CADDY) and the host firewall bouncer config (FW).
|
|
CROWDSEC_BOUNCER_KEY_CADDY=
|
|
CROWDSEC_BOUNCER_KEY_FW=
|
|
CROWDSEC_BOUNCER_KEY_EXPORTER=
|
|
|
|
############# Console enrollment #############
|
|
# Enroll key from https://app.crowdsec.net (free).
|
|
# Leave blank to run without Console (no community blocklist subscriptions).
|
|
CROWDSEC_ENROLL_KEY=
|
|
CROWDSEC_ENROLL_INSTANCE_NAME=
|
|
|
|
############# MaxMind GeoIP #############
|
|
# Free account: https://www.maxmind.com/en/geolite2/signup
|
|
# After signup: Manage License Keys -> Generate new license key.
|
|
# Used by the geoipupdate sidecar to download/refresh GeoLite2-City.mmdb,
|
|
# consumed by the exporter for the Country column in the Local bans table.
|
|
# Leave blank to disable: exporter still runs, country labels will be empty.
|
|
MAXMIND_ACCOUNT_ID=
|
|
MAXMIND_LICENSE_KEY=
|