mod_xsendfile icon indicating copy to clipboard operation
mod_xsendfile copied to clipboard

Apache2 module that processes X-SENDFILE headers to serve static files from dynamic handlers efficiently

Results 29 mod_xsendfile issues
Sort by recently updated
recently updated
newest added

What is the current maintenance status of `mod_xsendfile`? Judging from what I have seen, the last commit happened more than 10 years ago, although at least in my setup it...

- Added additional logging statements. - Removed all #ifdef _DEBUG around existing logging statements, allow LogLevel to decide. - Code now inserts an input header "X-SENDFILE-INVOKED" before making a subrequest....

Hi Nils, I've built mod_xsendfile for inclusion in our environment here and thought I'd contribute the rpm spec file I used. I hope you find it useful. Thanks -Ben

Not urgent but it would be nice when Readme is directly clear text readable.

Hello, I am having issues running XSendFile on Apache when using mod_rewrite to have custom download links. For example download works when url is like http://www.site.com/dl1.php?x=parameters but doesn't work when...

Apache version: 2.2 OS: Windows XP Pro 64-bit Getting the following error: (70008) Partial results are valid but processing is incomplete: xsendfile: unable to stat file: //server_name/folder/file The module works...

`XSendFileRootPath` - I created a new configuration that allows you to change the root path (this is important for non-standard installations). As the test environment was windows I added the...

Added: XSendFileDisableLastModified On/Off (default Off) Added: XSendfileNotRemoveContentEncoding On/Off (default Off) 100% Backwardcompatible for existings .htaccess/vhost configurations. Would be great to add those 2 new xsendfile directives.

To supress unsetting of the Content-Encoding header - e.g. if you want to deliver files that are gzip compressed. Based on the idea of ailmanki https://forums.freebsd.org/threads/port-mod_xsendfile.57330/ Successfully tested on Apache...

Compression can greatly improve response speed, so discarding Content_Encoding headers is unfortunate. One possibility is to define header X-SendFile-Content-Encoding, which xsendfile would convert into a Content-Encoding header. (The file being...