aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_http_files.lua
Commit message (Expand)AuthorAgeFilesLines
* mod_http_files: Put the MIME type map in a global shared table instead of per...Kim Alvefur2013-06-281-2/+2
* mod_http_files: Fix sending Content-Type for index filesKim Alvefur2012-12-231-1/+1
* mod_http_files: Allow passing a string to serve()Kim Alvefur2012-12-231-1/+4
* mod_http_files: Expose function other modules can use to combine their routes...Kim Alvefur2012-12-211-0/+8
* mod_http_files: Work with non-wildcard-routes. Key cache on the original HTTP...Kim Alvefur2012-12-211-5/+5
* mod_http_files: Replace file listing with an event, allowing a different plug...Kim Alvefur2012-12-211-19/+7
* mod_http_files: Export function can be used by other modules to serve files. ...Kim Alvefur2012-12-211-73/+88
* mod_http_files: Rename config options and variable namesKim Alvefur2012-12-211-5/+5
* mod_http_files: Log the error if we can't open or read a fileKim Alvefur2012-12-211-1/+2
* mod_http_files: Escape paths in redirectsKim Alvefur2012-12-211-1/+4
* mod_http_files: Only match on modification date when if-none-match is not pre...Kim Alvefur2012-12-211-1/+1
* mod_http_files: Only serve cached data if etag is unchanged.Kim Alvefur2012-12-211-3/+3
* mod_http_files: Make sure file extensions are not nil or empty stringKim Alvefur2012-12-211-2/+2
* mod_http_files: Avoid a bunch of table lookupsKim Alvefur2012-12-211-8/+12
* mod_http_files: No use in closing a file handle if we couldn't open itKim Alvefur2012-12-211-3/+5
* mod_http_files: Compare If-Modified-Since to last modification dateKim Alvefur2012-12-161-4/+7
* mod_http_files: Fix caching the stringified directory indexKim Alvefur2012-12-161-1/+1
* mod_http_files: Generate simple directory index.Kim Alvefur2012-12-111-2/+23
* mod_http_files: Have mimetypes in a shared table. Get mimetypes from /etc/mim...Kim Alvefur2012-12-111-10/+28
* mod_http_files: Cache data read from disk in a weak tableKim Alvefur2012-12-111-13/+18
* mod_http_files: Add Last-Modified headerKim Alvefur2012-12-111-0/+2
* mod_http_files: Add ETag and check If-None-Match to allow client-side cacheKim Alvefur2012-12-111-0/+7
* mod_http_files: Return 404 faster if file does not existKim Alvefur2012-12-111-3/+9
* mod_http_files: Configurable number of index files to check forKim Alvefur2012-12-111-2/+5
* mod_http_files: Respond with a 301 redirect for directories to append a / (fi...Kim Alvefur2012-05-121-2/+9
* mod_http_files: Specify method in HTTP routeMatthew Wild2012-04-271-1/+1
* mod_http_files, net.http.parser: Move path normalization to net.http.parser s...Matthew Wild2012-04-261-23/+1
* mod_http_files: Change option name from http_path to http_files_dirMatthew Wild2012-04-261-1/+1
* mod_http_files: Log 404 failure reasonMatthew Wild2012-04-261-0/+1
* mod_http_files: Return numeric error codes instead of custom error responsesMatthew Wild2012-04-261-12/+4
* mod_http_files: Rename argument to reflect what it actually isKim Alvefur2012-04-241-3/+3
* mod_httpserver: Rename to mod_http_filesKim Alvefur2012-04-231-0/+86