From 386cee6c04a16dbd781de3389e9f8edc75740404 Mon Sep 17 00:00:00 2001 From: Joe Birr-Pixton Date: Tue, 13 Aug 2024 15:08:38 +0100 Subject: [PATCH] README.md: add fedora instructions --- rustls-libssl/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/rustls-libssl/README.md b/rustls-libssl/README.md index bc4f7ce..d324bad 100644 --- a/rustls-libssl/README.md +++ b/rustls-libssl/README.md @@ -15,6 +15,7 @@ used by: - curl on Ubuntu 22.04 LTS - nginx on Ubuntu 22.04 LTS and 24.04 LTS +- nginx on Fedora 40 We have a [compatibility matrix](MATRIX.md) and [known issues](https://github.com/rustls/rustls-openssl-compat/issues). @@ -22,11 +23,20 @@ We have a [compatibility matrix](MATRIX.md) and # Usage ## Installation +Ubuntu/Debian users: + ```shell $ wget https://github.com/rustls/rustls-openssl-compat/releases/latest/download/rustls-libssl_amd64.deb $ sudo dpkg -i rustls-libssl_amd64.deb ``` +or Fedora/Redhat users: + +```shell +$ wget https://github.com/rustls/rustls-openssl-compat/releases/latest/download/rustls-libssl.x86_64.rpm +$ sudo yum localinstall -y rustls-libssl.x86_64.rpm +``` + Using curl: ```shell