Glenn Strauss

Results 143 comments of Glenn Strauss

For lighttpd, try this: ``` url.rewrite-if-not-file = ( "^/appfolder/(.+)" => "/appfolder/index.php?_REWRITE_COMMAND=$1", ) ```

I added a `Removals` line to `ChangeLog.d/mbedtls_asn1_type_free.txt` If you prefer to avoid the ABI change, I could leave `mbedtls_asn1_free_named_data( mbedtls_asn1_named_data *entry );` even though it is no longer used. It...

If desired, I could add macros or inline funcs to be accessors to year, month, day, hour, minute, second from `mbedtls_x509_time`

The top commit makes `struct mbedtls_x509_time` a struct of 2 ints instead of 6 ints, reducing the size of `mbedtls_x509_time` by 16 bytes. (It could alternatively be implemented as a...

branch has been rebased on HEAD of 'development'

branch has been rebased on HEAD of 'development'

branch has been rebased on HEAD of 'development'

lighttpd [mod_deflate](https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModDeflate) can compress and save the compressed result in a cache if `deflate.cache-dir` is set in `lighttpd.conf`. Then, subsequent requests (with Accept-Encoding) will receive the already-compressed file from the...

lighttpd 1.4.28 was released Aug 2010, almost 11 years ago. Please use the most recent lighttpd 1.4.59, which has better Range support than does lighttpd 1.4.28.

> I can't find a way to redefine SCRIPT_NAME lighttpd creates SCRIPT_NAME based on RFC 3875 "The Common Gateway Interface (CGI) Version 1.1" You can modify lighttpd behavior by telling...