add ssl patches to nginx-1.25 image for coroutines to work in lua client hello and cert ssl blocks (#11485)
* feat: add ssl patches for coroutines to work in lua ssl blocks Signed-off-by: Jon Carl <grounded042@joncarl.com> * switch to include more patches Signed-off-by: Jon Carl <grounded042@joncarl.com> --------- Signed-off-by: Jon Carl <grounded042@joncarl.com>
This commit is contained in:
parent
bcb98c0c8d
commit
7de28cfcdb
32 changed files with 2110 additions and 0 deletions
|
|
@ -0,0 +1,15 @@
|
|||
diff --git a/src/os/win32/ngx_event_log.c b/src/os/win32/ngx_event_log.c
|
||||
index e11ed1e8..dce8eddd 100644
|
||||
--- a/src/os/win32/ngx_event_log.c
|
||||
+++ b/src/os/win32/ngx_event_log.c
|
||||
@@ -8,7 +8,9 @@
|
||||
#include <ngx_core.h>
|
||||
|
||||
|
||||
-#define NGX_MAX_ERROR_STR 2048
|
||||
+#ifndef NGX_MAX_ERROR_STR
|
||||
+#define NGX_MAX_ERROR_STR 4096
|
||||
+#endif
|
||||
|
||||
|
||||
void ngx_cdecl
|
||||
Loading…
Add table
Add a link
Reference in a new issue