The sys admin's daily grind – H2O
Whiz Kid
H2O is a web server that has been in development for some time but seems to be a baby compared with the long-serving Apache. Columnist Charly sets out to discover what the "new kid" is capable of.
Most popular distributions still do not offer packages for H2O [1], but it is not difficult to build the web server. In addition to the standard compilation tools, you also need cmake
. The following command will help you pick up the code from GitHub:
git clone https://github.com/h2o/h2o.git h2o
Now change to the h2o
directory. As the build parameters, you can decide whether to trust OpenSSL for encrypted connections or to go with LibreSSL [2] instead. To use OpenSSL, type:
cmake -DWITH_BUNDLED_SSL=off
If you prefer the OpenSSL fork, LibreSSL, you can replace off
with on
. If you stipulate auto
, Cmake will check which OpenSSL version exists on your system. If it is newer than 1.0.2, OpenSSL is used, otherwise LibreSSL. The H2O developers prefer LibreSSL because it is generally regarded as more secure and supports procedures such as Chacha20-Poly1305. That said, H2O is a little slower than OpenSSL.
This fact can be significant because H2O owes its burgeoning popularity to its speed. Even before H2O reached version 1.0, benchmarks [3] demonstrating that the newcomer delivered web pages twice as fast as the Nginx sprinter were already making the rounds. H2O also shares the ability to act as a reverse proxy with Nginx.
Bring On the Water!
All that is separating you and a working web server now is two commands: make
and sudo make install
. The executable is created in /usr/local/bin/
, and a sample configuration file exists in the examples
directory. I launched the server as follows:
/usr/local/bin/h2o -c \ /usr/local/h2o/examples/h2o/h2o.conf
In the out-of-the-box configuration, the server listens on port 8080 (unencrypted) and 8081 (with HTTPS). If you have a suitable browser (e.g., Firefox as of version 36), you can even try out the new HTTP/2 protocol, about which another article in this issue reveals many interesting facts.
The browser then complains about the protocol being self-signed, but the setup still works (Figure 1). The new HTTP protocol, which only became an official IETF standard in May 2015, is something that many other web servers still cannot handle. HTTP/2 can bundle connections and also has a new compression method in the form of HPACK.
Infos
- H2O: https://h2o.examp1e.net
- LibreSSL: http://www.libressl.org
- Current H2O vs. Nginx comparison: http://www.it-wars.com/web-performance-H2O-vs-nginx/
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.