darkhttpd icon indicating copy to clipboard operation
darkhttpd copied to clipboard

When you need a web server in a hurry.

Results 21 darkhttpd issues
Sort by recently updated
recently updated
newest added

Would you be open to merging a PR adding (very) simple support for CORS headers? My first thought is that passing an `--allow-origin X` argument would add the `Access-Control-Allow-Origin: X`...

This is very cool. I'm looking to make a FreeBSD port for this. Looks like there's some useful new features since 1.13. Are you planning on releasing a new version...

Often, I want to just share a single file over HTTP. Right now, we can only pass a directory to `darkhttpd`, and it will serve any file from that directory....

Initial run options after compile to get quick ride with the server. It includes `index.html`, `mimetypes` to be able to access a linked README.md and `run.sh` shell script to apply...

Like `mimetypes` option, it would be nice to have an option such as `--customerrors` that points to a router like file that points to custom errors page, something like below:...

The `--maxconn N` option does not limit the number of simultaneous connections as described. This value [is being used](https://github.com/emikulic/darkhttpd/blob/667edacaa3805355f687f535633dbac6f84d7ed2/darkhttpd.c#L866) as the `backlog` parameter to [`listen`](https://man7.org/linux/man-pages/man2/listen.2.html). At least on Linux, this...

Open link in new tab and keep the list.

This PR introduces 2 commits. The primary is 95d785acc1e4bc5f1b9ff8bda17ffb51b6f7a5f6. Old versions of Solaris did not have vasprintf, so darkhttpd defined one gated behind an ifdef. Oracle Solaris 10 has had...

I think it would be interesting if darkhttpd could respond to the PROPFIND method. This would make it simpler to sync a webserver or whole directory than the loose directory...

macOS can have some really weird special files, unlike other Posix-alike operating systems. Those special files probably should be filtered from generated directory listings and direct access for security reasons....