Eirik Øverby
Eirik Øverby
I don't think that's among the patches the FreeBSD port ships with, so we'd have to update the port with that, int hat case. But is this the reason for...
It doesn't apply cleanly to 1.25.3 (it seems); and not on 1.24 either: ```diff $ cat work/nginx-1.24.0/src/event/ngx_event_openssl.c.rej @@ -1712,6 +1712,9 @@ if (sslerr == SSL_ERROR_WANT_X509_LOOKUP # ifdef SSL_ERROR_PENDING_SESSION || sslerr...
Hey, no problem, thanks for returning to me on this. I'll give that a go; any idea when it'll be merged to an even-numbered nginx version?
It still doesn't work; behaviour is exactly the same as before. As a side note: I installed nginx-devel (1.25.3), which has `--add-dynamic-module=/wrkdirs/usr/ports/www/nginx-devel/work/lua-nginx-module-0.10.26rc1` but on startup I get: `NGINX: 2023/12/11 16:47:43...
Hi again, long time. So since we cannot patch nginx, and can't run the openresty bundle, I'm wondering if this has been reported to upstream (nginx) or if there are...
There are several places where Linux-isms are used here. Once I hit this error, I did the following to fix all the files with `#!/bin/bash` in them: ``` find ....
Simply replacing the `#!/bin/bash` with `#!/usr/bin/env bash` will do the trick and will work on all distros. Most of the scripts (there are several dozen) already do the Right Thing(TM),...
Hola! I'm using `rxvt-unicode`, and the `TERM` is usually `rxvt-unicode-256color`. However, with that setting, arrow keys don't work at all (for selecting): ``` > 259 0x00000103 0b00000000000000000000000100000011 < (KEY_UP) >...
And here's in an `xterm`, with `TERM=xterm` - the shift-arrow events are reversed (compared to urxvt) indeed, and selection works as expected.. ``` > 259 0x00000103 0b00000000000000000000000100000011 < (KEY_UP) >...
Note: In `nano`, arrow keys and shift+arrow keys works as expected, with any terminal and TERM settings. So I'm not sure what's going on here..