Glenn Strauss

Results 320 comments of Glenn Strauss

`lighttpd -v` to find the lighttpd version `strace` can be useful to see what is being sent between lighttpd and the backend [lighttpd Debug Variables](https://wiki.lighttpd.net/DebugVariables) can be added to lighttpd.conf...

If you're using lighttpd 1.4.56 or later with Let's Encrypt, please simply use the files from Let's Encrypt: ``` ssl.privkey = "/etc/lighttpd/certs/www.example.com/privkey.pem" ssl.pemfile = "/etc/lighttpd/certs/www.example.com/fullchain.pem" ``` With the above, it...

> I'm still on 1.10x train so I'm on 1.4.35 at this time. lighttpd 1.4.35 was released Mar 2014, over 7 years ago. There have been a small, but non-zero...

Patch proposed in https://github.com/summerwind/h2spec/issues/120#issuecomment-708103532 would make this a non-issue for me, though a valid header line is still preferred for correctness of the test.

A workaround (kludge) is ``` --- a/spec/verifier.go +++ b/spec/verifier.go @@ -66,6 +66,10 @@ func VerifyConnectionError(conn *Conn, codes ...http2.ErrCode) error { if actual == nil { actual = event } +...

The following works for me to allow 400 Bad Request in `VerifyStreamError()` in lieu of an HTTP/2 stream error. Feedback appreciated -- I am not fluent in golang. If it...

I happened across this interesting project. :) I am the lighttpd developer who wrote the current version of lighttpd mod_webdav. If you have suggestions for lighttpd mod_webdav (and those suggestions...

Yes, inotify is an option in the application. Yes, inotify works on local filesystems under OpenWRT. My first impression to your comment is that adding shell-outs to a high performance...

I think that you might be trying to do too much inside lighttpd. > From the lighttpd plugin api it looks like it's possibe to make a hook. Maybe it...

Reviewing the above, if thumb-trigger.lua detects a successful PUT request (201 or 204) for an image file, then there is no need to check if the thumbnail already exists because...