<- Back
Comments (86)
- austin-cheneyEvery web server claims to be fast, so I wonder how they define that. As someone who has written their own supposedly fast web server I only want configuration simplicity. Most web servers are unnecessarily far too complicated.In a web server here is what I am looking for:* Fast. That is just a matter of streams and pipes. More on this later. That said the language the web server is written in largely irrelevant to its real world performance so long as it can execute low level streams and pipes.* HTTP and WebSocket support. Ideally a web server will support both on the same port. It’s not challenging because you just have to examine the first incoming payload on the connection.* Security. This does not have to be complicated. Let the server administrator define their own security rules and just execute those rules on incoming connections. For everything that fails just destroy the connection. Don’t send any response.* Proxy/reverse proxy support. This is more simple than it sounds. It’s just a pipe to another local existing stream or piping to a new stream opened to a specified location. If authentication is required it can be the same authentication that sits behind the regular 403 HTTP response. The direction of the proxy is just a matter of who pipes to who.* TLS with and without certificate trust. I HATE certificates with extreme anger, especially for localhost connections. A good web server will account for that anger.* File system support. Reading from the file system for a specific resource by name should be a low level stream via file descriptor piped back to the response. If this specific file system resource is something internally required by the application, like a default homepage it should be read only once and then forever fetched from memory by variable name. Displaying file system resources, like a directory listing, doesn’t have to be slow or primitive or brittle.
- password4321https://github.com/errantmind/faf is the fastest Rust static "web server" per the most recent TechEmpower Round 23 (Plaintext); it is purposely barebones (provide content via Rust callback!) The top 3 Composite scores are all Rust web frameworks, also not necessarily intended as general-purpose web servers.https://github.com/static-web-server/static-web-server wins the SEO (and GitHub star) battle, though apparently it is old enough to have a couple unmaintained dependencies.I use https://github.com/sigoden/dufs as my personal file transfer Swiss Army knife since it natively supports file uploads; I will check out Ferron as a lighter reverse proxy with automatic SSL certs vs. Caddy.
- DoctorOWThis is a really good Caddy replacement. The configuration format Caddy uses sometimes feels oversimplified in that complex configurations are hard to read. My instincts tell me this could scale better without getting more verbose. I'm definitely considering a migration if this project matures.
- dorianniemiecThe author of Ferron web server here. Thank you so much for submitting this, and thank you all for the support you have shown when I submitted the server on Hacker News.
- no_wizardI wonder why they left nginx off their comparisons. Is it simply because nginx is still faster I wonder
- arnathRandom thing I’ve been wondering: is there a point in including TLS support in web servers any more? Isn’t it always better to run a reverse proxy and terminate HTTPs at the edge?
- titaphrazKudos. It would have been nice to see benchmarks compared to Nginx, since it's extremely popular.I'm not using any of the other servers in the benchmark so it's meaningless to me.
- timeflexThe first thing on their main homepage is instructions to curl a shell script into Bash using Sudo. I find the argument that they prioritize security unconvincing.
- frontforAre there benchmarks demonstrating its speed?
- kapilvtDocs links lead to a 403 forbidden for me https://www.ferronweb.org/docs/
- throwaway81523Yikes, there is a musician named Ferron who has been around forever, and her web site was formerly ferronweb.com. So I did a double take when I saw this. The musician's web site is ferronsongs.com now. Shadows on a Dime (from 1984) is a great album.
- nottorpIsn't Go better for writing servers, and as fast and memory safe as the second coming of $DEITY?
- bitbasherWhy no benchmarks against Nginx?
- TepixHow much memory does it use? Is it suitable for memory-limited scenarios like a Raspberry Pi 1 with 256MB?
- alexpadulaCool project! The first feature put a smile on my face! “Built with rust so it’s fast” paraphrasing but yeah :)
- liveafterloveNice, does it support DTSL for webrtc over the same port? Nginx only have a patch for it ATM.
- rurbanDid they prove for 100% memory safety or just the default 70% rust memory safety? No, they didnt
- eptcykaHow does it handle slow loris?
- m00dylooks like caddy clone in rust ;) good luck. I think it is way better than caddy. Auto TLS renewal is a banger. I was thinking the same to build but had no time to do it.
- wildinprogress[dead]