-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
What happened?
Nginx throws error:
[Crowdsec] bouncer error: request failed: bad uri: ${CROWDSEC_LAPI_URL}/v1/decisions?ip=*.*.*.*, client: *.*.*.*, server: [redacted], request: "GET /startpage/ HTTP/2.0", host: "[redacted]", referrer: "[redacted]"
What did you expect to happen?
Should use API_URL variable as per docs.
How can we reproduce it (as minimally and precisely as possible)?
Deploy nginx bouncer on kubernetes via:
controller:
extraVolumes:
- name: crowdsec-bouncer-plugin
emptyDir: {}
extraInitContainers:
- name: init-clone-crowdsec-bouncer
image: crowdsecurity/lua-bouncer-plugin
tag: v1.0.2@sha256:608f0ff0b78bdcc3eb68669900020352095671c0952c13e17155b584d3419085
imagePullPolicy: IfNotPresent
env:
- name: CROWDSEC_LAPI_URL
value: "http://crowdsec-service.watchtower.svc.cluster.local:8080" # crowdsec lapi service-name
- name: API_URL
value: "http://crowdsec-service.watchtower.svc.cluster.local:8080" # crowdsec lapi service-name
- name: API_KEY
valueFrom:
secretKeyRef:
name: ingress-nginx
key: BOUNCER_KEY
- name: BOUNCER_CONFIG
value: "/crowdsec/crowdsec-bouncer.conf"
- name: BAN_TEMPLATE_PATH
value: /etc/nginx/lua/plugins/crowdsec/templates/ban.html
# Due to https://discourse.crowdsec.net/t/problems-installing-nginx-bouncer-in-k3s/1273
# command: ['sh', '-c', "sh /docker_start.sh; mkdir -p /lua_plugins/crowdsec/; cp -R /crowdsec/* /lua_plugins/crowdsec/"]
command:
[
"sh",
"-c",
"apk update; apk add bash; bash /docker_start.sh; mkdir -p /lua_plugins/crowdsec/; cp -R /crowdsec/* /lua_plugins/crowdsec/",
]
volumeMounts:
- name: crowdsec-bouncer-plugin
mountPath: /lua_plugins
extraVolumeMounts:
- name: crowdsec-bouncer-plugin
mountPath: /etc/nginx/lua/plugins/crowdsec
subPath: crowdsec
config:
plugins: "crowdsec"
lua-shared-dicts: "crowdsec_cache: 50m"
server-snippet: |
resolver local=on ipv6=off;
Anything else we need to know?
Tried setting CROWDSEC_LAPI_URL as env variable.
Crowdsec version
v1.6.2OS version
# On Linux:
$ cat /etc/os-release
# paste output here
$ uname -a
# paste output here
# On Windows:
C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture
# paste output hereEnabled collections and parsers
$ cscli hub list -o raw
# paste output hereAcquisition config
```console
# On Linux:
$ cat /etc/crowdsec/acquis.yaml /etc/crowdsec/acquis.d/*
# paste output here
On Windows:
C:> Get-Content C:\ProgramData\CrowdSec\config\acquis.yaml
paste output here
Config show
$ cscli config show
# paste output herePrometheus metrics
$ cscli metrics
# paste output hereRelated custom configs versions (if applicable) : notification plugins, custom scenarios, parsers etc.
Metadata
Metadata
Assignees
Labels
No labels