From 1659873b916f968579af6115870afe5c7770ccf6 Mon Sep 17 00:00:00 2001 From: Dipankar Das Date: Wed, 14 Jun 2023 20:09:17 +0530 Subject: [PATCH] fix: installation command for tls plugin Signed-off-by: Dipankar Das --- docs/develop/build-and-run/install.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/develop/build-and-run/install.md b/docs/develop/build-and-run/install.md index 16d3f8cda..e704abdd8 100644 --- a/docs/develop/build-and-run/install.md +++ b/docs/develop/build-and-run/install.md @@ -121,15 +121,16 @@ WasmEdge uses plugins to extend its functionality. If you want to use more of Wa The WasmEdge TLS plugin utilizes the native OpenSSL library to support HTTPS and TLS requests from WasmEdge sockets. To install the WasmEdge TLS plugin on Linux, run the following commands after you have installed WasmEdge. ```bash -wget https://github.com/second-state/wasmedge_rustls_plugin/releases/download/0.1.0/WasmEdge-plugin-wasmedge_rustls-0.1.0-alpha-ubuntu20.04_x86_64.tar -tar -xf WasmEdge-plugin-wasmedge_rustls-*.tar +wget https://github.com/WasmEdge/WasmEdge/releases/download/0.11.1/WasmEdge-plugin-wasmedge_httpsreq-0.11.1-manylinux2014_x86_64.tar.gz + +tar -xzf WasmEdge-plugin-wasmedge_httpsreq-0.11.1-manylinux2014_x86_64.tar.gz # If you only installed WasmEdge for the local user -cp *.so ~/.wasmedge/plugin/ +cp libwasmedgePluginHttpsReq.so ~/.wasmedge/plugin/ # If you installed Wasmedge at /usr/local for all users sudo mkdir -p /usr/local/lib/wasmedge/ -sudo cp *.so /usr/local/lib/wasmedge/ +sudo cp libwasmedgePluginHttpsReq.so /usr/local/lib/wasmedge/ ``` Then, go to [HTTPS request in Rust chapter](../rust/http_service/client) to see how to run HTTPs services with Rust.