| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| | |
|
| |
|
|
|
| |
each connection, not every request. The code was already there and enabled
on debug, I just turned it into an alternative log format.
|
| |
|
|
|
|
|
| |
for debugging, you should prefer local UNIX sockets, but it helped to
find an issue that will be fixed with the next commit.
OK florian@
|
| |
|
|
|
|
| |
or the request completed. Turn the old log message into a debug message.
ok doug@
|
| | |
|
| |
|
|
|
| |
bufferevent_read().
Input/OK reyk@
|
| | |
|
| | |
|
| |
|
|
|
| |
servers, for example auto index for a sub-directory only. Internally,
a "location" is just a special type of a "virtual" server.
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
| |
responses. To accomplish this, add some semantics to retrieve the
server host name of a connection: either IP, IP:PORT (if not 80) or
[IP6]:PORT, or Host value (if valid).
|
| |
|
|
|
|
| |
servers with the same or "overlapping" IP address but a different name.
ok beck@
|
| | |
|
| | |
|
| |
|
|
| |
all the headers etc. of a connection.
|
| |
|
|
| |
prevents a crash on exit. With debugging help from blambert@.
|
| |
|
|
|
|
| |
relayd but had to be adjusted for httpd. It now handles single-pass
HTTP connections, persistent connections with multiple requests, and
body-less HEAD requests. With input from benno@
|
| | |
|
| |
|
|
| |
(adopted from relayd).
|
| | |
|
| |
|
|
|
|
| |
compatible to nginx' mime.types file which can be included directly.
If not present, use a few built-in defaults for html, css, txt, jpeg,
gif, png, and js.
|
|
|
web server. It is not finished yet and I just started it today, but
the goal is to provide an HTTP server that a) provides minimal
features, b) serves static files, c) provides FastCGI support, and d)
follows common coding practices of OpenBSD.
It will neither support plugins, nor custom memory allocators, EBCDIC
support, PCRE or any other things that can be found elsewhere.
httpd(8) is not intended to provide a fully-featured replacement for
nginx(8) or the Apache, but it will provide enough functionality that
is needed in the OpenBSD base system.
ok deraadt@
|