| Commit message (Expand) | Author | Age | Files | Lines |
| * | Replace the static env variables with a single global variable. |  rzalamena | 2016-08-26 | 1 | -8/+3 |
| * | According to RFC 7231 4.3.7, OPTIONS may have body. "Although this |  reyk | 2016-07-27 | 1 | -2/+2 |
| * | Return "400 Bad Request" instead of "500 Server Internal Error" for |  krw | 2016-05-27 | 1 | -3/+5 |
| * | makes sure the value of the asprintf buffer is zeroed on error |  jung | 2016-05-22 | 1 | -3/+7 |
| * | Set content charset for auto index generated page. |  florian | 2016-03-08 | 1 | -1/+3 |
| * | Back out previous; requested by jung@ |  tim | 2016-02-11 | 1 | -7/+7 |
| * | Include the server port number in the common and combined logs. This is useful |  tim | 2016-02-11 | 1 | -7/+7 |
| * | No need to check for NULL before free(). |  mmcc | 2015-12-07 | 1 | -3/+2 |
| * | Remove unnecessary NULL checks before free(). |  reyk | 2015-12-03 | 1 | -21/+13 |
| * | Plug a leak. |  sunil | 2015-10-13 | 1 | -1/+2 |
| * | Pass unsigned chars to ctype functions. |  reyk | 2015-10-13 | 1 | -2/+2 |
| * | Fix a regression that was introduced with server.c r1.64: Do NOT free |  reyk | 2015-09-07 | 1 | -2/+2 |
| * | The WebDAV MOVE method was not included in the switch statement |  reyk | 2015-08-21 | 1 | -1/+2 |
| * | Change httpd(8) to use C99-style fixed-width integers (uintN_t instead |  reyk | 2015-08-20 | 1 | -7/+7 |
| * | repair hsts header output, wrong format strings caused broken |  benno | 2015-07-31 | 1 | -3/+3 |
| * | backout the previous: it broke wordpress somehow. |  reyk | 2015-07-29 | 1 | -2/+1 |
| * | Read fcgi response records until we have the whole http header and can |  florian | 2015-07-29 | 1 | -1/+2 |
| * | The realm in authenticate directive of config file isn't escaped for '"' char. |  semarie | 2015-07-23 | 1 | -3/+10 |
| * | For the completeness of HSTS, add the non-standard preload option. |  reyk | 2015-07-19 | 1 | -7/+11 |
| * | Allow to change the default media type globally or per-location, |  reyk | 2015-07-18 | 1 | -5/+4 |
| * | Implement HTTP Strict Transport Security (HSTS). |  florian | 2015-07-18 | 1 | -4/+26 |
| * | spacing |  reyk | 2015-07-16 | 1 | -5/+5 |
| * | Escape the message in server_log() as well. |  reyk | 2015-07-15 | 1 | -7/+6 |
| * | For some values like the User-Agent, use vis(3) instead of url_encode(). |  reyk | 2015-07-15 | 1 | -18/+19 |
| * | Simplify the error path of the previous commit: by using ret = -1 by |  reyk | 2015-07-15 | 1 | -37/+15 |
| * | httpd don't sanitize variables before putting them in logs. It is possible for |  semarie | 2015-07-15 | 1 | -20/+101 |
| * | escape the matched substrings before using it in expansion. |  semarie | 2015-06-23 | 1 | -3/+6 |
| * | Add initial support for pattern matching using Lua's pattern matching code. |  reyk | 2015-06-23 | 1 | -12/+61 |
| * | After the last change, we also have to url_encode $SERVER_NAME and |  reyk | 2015-06-22 | 1 | -9/+16 |
| * | When encoding the Location url, only encode the query and path |  reyk | 2015-06-21 | 1 | -22/+37 |
| * | Use off_t instead of size_t to pass file size and print it using %lld when |  kettenis | 2015-05-20 | 1 | -3/+3 |
| * | Implement byte ranges. |  florian | 2015-05-03 | 1 | -1/+8 |
| * | Regis Leroy reported that httpd does not strictly accept CRLF for |  jsg | 2015-04-18 | 1 | -5/+6 |
| * | Revert previous as this breaks stuff. |  florian | 2015-04-09 | 1 | -6/+1 |
| * | Do not silently accept multiple Content-Length headers. |  florian | 2015-04-08 | 1 | -1/+6 |
| * | Allow to specify CGI variables as macros in redirection strings, eg. |  reyk | 2015-02-23 | 1 | -3/+107 |
| * | spacing |  reyk | 2015-02-08 | 1 | -2/+3 |
| * | spacing |  reyk | 2015-02-07 | 1 | -11/+12 |
| * | Add support for blocking, dropping, and redirecting requests. |  reyk | 2015-02-07 | 1 | -2/+11 |
| * | Fix log options in locations. |  reyk | 2015-02-06 | 1 | -4/+4 |
| * | Fix potential NULL pointer dereference. |  reyk | 2015-02-05 | 1 | -5/+6 |
| * | httpd is based on relayd and had included many headers that are only |  reyk | 2015-01-21 | 1 | -11/+3 |
| * | Log the remote user in the access.log. |  florian | 2015-01-19 | 1 | -8/+10 |
| * | s/clt_fcgi_remote_user/clt_remote_user/ |  florian | 2015-01-19 | 1 | -7/+7 |
| * | Decouple auth parameters from struct server_config into struct auth. |  reyk | 2015-01-19 | 1 | -3/+4 |
| * | First stab at implementing basic auth. |  florian | 2015-01-18 | 1 | -2/+97 |
| * | Replace <sys/param.h> with <limits.h> and other less dirty headers where |  deraadt | 2015-01-16 | 1 | -4/+5 |
| * | bump copyright year |  reyk | 2015-01-13 | 1 | -2/+2 |
| * | I missed one goto abort instead of free(line). |  reyk | 2015-01-06 | 1 | -3/+2 |
| * | Instead of calling free(line) in each error case, call it once in fail:. |  reyk | 2015-01-06 | 1 | -22/+13 |