Files
ports/www/bunkerweb/files/patch-src_common_confs_init-worker-lua.conf
T
Jochen Neumeister da044629d7 www/bunkerweb: add new port
BunkerWeb is an open-source next-generation web application firewall
(WAF) and security platform designed to protect and manage web services.

It provides integrated security features such as request filtering,
rate limiting, TLS management, GeoIP support and a web management
interface.

As this is a newly introduced port, users are encouraged to validate
their deployment before using it in production environments.

WWW: https://github.com/bunkerity/bunkerweb

Sponsored by:	Netzkommune GmbH
2026-06-01 19:27:52 +02:00

12 lines
494 B
Plaintext

--- src/common/confs/init-worker-lua.conf.orig 2026-05-29 08:21:28 UTC
+++ src/common/confs/init-worker-lua.conf
@@ -284,7 +284,7 @@ init_worker_by_lua_block {
logger:log(INFO, "init phase ended")
local res, err = remove("/var/tmp/bunkerweb_reloading")
- if not res and err ~= "No such file or directory" then
+ if not res and err and not err:find("No such file or directory", 1, true) then
logger:log(WARN, "unable to remove /var/tmp/bunkerweb_reloading file: " .. err)
end