Skip to content

Commit aad46a2

Browse files
authored
Merge pull request #84 from crowdsecurity/bump/v1.0.7
bump to v1.0.7 of the lua bouncer lib
2 parents c3820ef + 199f0f8 commit aad46a2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ OUTDIR="crowdsec-nginx-bouncer-${BUILD_VERSION}/"
33
LUA_MOD_DIR="${OUTDIR}lua-mod"
44
CONFIG_DIR="${OUTDIR}config"
55
OUT_ARCHIVE="crowdsec-nginx-bouncer.tgz"
6-
LUA_BOUNCER_BRANCH?=v1.0.6
6+
LUA_BOUNCER_BRANCH?=v1.0.7
77
default: release
88
release:
99
git clone -b "${LUA_BOUNCER_BRANCH}" https://github.com/crowdsecurity/lua-cs-bouncer.git

debian/rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export DEB_VERSION=$(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ')
44
export BUILD_VERSION=v${DEB_VERSION}-debian-pragmatic
5-
export LUA_BOUNCER_BRANCH?=v1.0.6
5+
export LUA_BOUNCER_BRANCH?=v1.0.7
66

77
%:
88
dh $@

nginx/crowdsec_nginx.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ lua_shared_dict crowdsec_cache 50m;
33
lua_ssl_trusted_certificate /etc/ssl/certs/ca-certificates.crt;
44
init_by_lua_block {
55
cs = require "crowdsec"
6-
local ok, err = cs.init("/etc/crowdsec/bouncers/crowdsec-nginx-bouncer.conf", "crowdsec-nginx-bouncer/v1.1.1")
6+
local ok, err = cs.init("/etc/crowdsec/bouncers/crowdsec-nginx-bouncer.conf", "crowdsec-nginx-bouncer/v1.1.3")
77
if ok == nil then
88
ngx.log(ngx.ERR, "[Crowdsec] " .. err)
99
error()

0 commit comments

Comments
 (0)