{"id":16164481,"url":"https://github.com/younix/httpd","last_synced_at":"2025-04-07T04:48:20.913Z","repository":{"id":13889417,"uuid":"16587678","full_name":"younix/httpd","owner":"younix","description":"Simple implementation of an HTTP daemon","archived":false,"fork":false,"pushed_at":"2014-02-19T16:45:32.000Z","size":236,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-13T09:18:58.578Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/younix.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-02-06T17:41:01.000Z","updated_at":"2014-06-24T01:45:46.000Z","dependencies_parsed_at":"2022-08-23T14:10:21.815Z","dependency_job_id":null,"html_url":"https://github.com/younix/httpd","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/younix%2Fhttpd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/younix%2Fhttpd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/younix%2Fhttpd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/younix%2Fhttpd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/younix","download_url":"https://codeload.github.com/younix/httpd/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247595381,"owners_count":20963943,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-10T02:46:50.617Z","updated_at":"2025-04-07T04:48:20.887Z","avatar_url":"https://github.com/younix.png","language":"C","readme":"# httpd\n\nhttpd is a simple web server which only does HTTP.  This is just a research\nproject for tiny programs and Unix way of live.  The main idea behind this\nproject is, to write a daemon that just implements the handling one protocol.\n\n**This daemon is NOT for productive use**\n\n * missing security features!\n * no stable code base!\n\n## Don'ts:\n * no IPv4 and IPv6\n * no SSL and TLS\n * no fastcgi\n\n## Ideas:\n * UNIX Client-Server Program Interface (UCSPI)\n * protocol parsing with regex(3)\n * CGI scripts over file execution permissions\n * authentication over file others permissions and bsd-auth(3)\n\n## expected problems\n * bad performance on large scale\n * bad latency\n * bad performance on many parallel requests\n\n## expected improvements\n * lesser amount of source code\n * simpler source code\n * lesser maintenance\n\n## Tested on\n * OpenBSD current\n * GNU/Linux (Debian)\n  * with package: libbsd-dev\n  * without authentication\n\n## http features\n\n| Method  | Supported |\n|---------|-----------|\n| OPTIONS | no        |\n| GET     | **yes**   |\n| HEAD    | no        |\n| POST    | no        |\n| PUT     | no        |\n| DELETE  | no        |\n| TRACE   | no        |\n| CONNECT | no        |\n\n## http request header features\n\n| Header Field        | Status        |\n|---------------------|---------------|\n| Accept              | ignored       |\n| Accept-Charset      | ignored       |\n| Accept-Encoding     | ignored       |\n| Accept-Language     | ignored       |\n| Authorization       | **supported** |\n| Expect              | ignored       |\n| From                | ignored       |\n| Host                | ignored       |\n| If-Match            | ignored       |\n| If-Modified-Since   | ignored       |\n| If-None-Match       | ignored       |\n| If-Range            | ignored       |\n| If-Unmodified-Since | ignored       |\n| Max-Forwards        | ignored       |\n| Proxy-Authorization | ignored       |\n| Range               | ignored       |\n| Referer             | ignored       |\n| TE                  | ignored       |\n| User-Agent          | ignored       |\n\n## http response header features\n\n| Header Field        | Supported     |\n|---------------------|---------------|\n| Accept-Ranges       | no            |\n| Age                 | no            |\n| ETag                | no            |\n| Location            | no            |\n| Proxy-Authenticate  | no            |\n| Retry-After         | no            |\n| Server              | no            |\n| Vary                | no            |\n| WWW-Authenticate    | **yes**       |\n\n## http entry header features\n\n| Header Field        | Supported     |\n|---------------------|---------------|\n| Allow               | no            |\n| Content-Encoding    | no            |\n| Content-Language    | no            |\n| Content-Length      | no            |\n| Content-Location    | no            |\n| Content-MD5         | no            |\n| Content-Range       | no            |\n| Content-Type        | no            |\n| Expires             | no            |\n| Last-Modified       | no            |\n\n## references\n * http://cr.yp.to/proto/ucspi.txt\n * [RFC: Hypertext Transfer Protocol](http://tools.ietf.org/html/rfc2616)\n * [RFC: HTTP Authentication](http://tools.ietf.org/html/rfc2617)\n * [RFC: The Common Gateway Interface](http://tools.ietf.org/html/rfc3875)\n\nvim: syntax=markdown spell spelllang=en:\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyounix%2Fhttpd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyounix%2Fhttpd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyounix%2Fhttpd/lists"}