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
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.
-
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.