diff --git a/docs/start/install.md b/docs/start/install.md index f275d6f3..f51aed37 100644 --- a/docs/start/install.md +++ b/docs/start/install.md @@ -128,15 +128,15 @@ WasmEdge uses plug-ins to extend its functionality. If you want to use more of W The WasmEdge TLS plug-in utilizes the native OpenSSL library to support HTTPS and TLS requests from WasmEdge sockets. To install the WasmEdge TLS plug-in on Linux, run the following commands after you have installed WasmEdge. ```bash -wget https://github.com/second-state/wasmedge_rustls_plugin/releases/download/0.2.0/wasmedge_rustls_plugin_ubuntu-20.04.zip -unzip wasmedge_rustls_plugin_ubuntu-20.04.zip +wget https://github.com/WasmEdge/WasmEdge/releases/download/0.13.4/WasmEdge-plugin-wasmedge_rustls-0.13.4-manylinux2014_x86_64.tar.gz +tar xf WasmEdge-plugin-wasmedge_rustls-0.13.4-manylinux2014_x86_64.tar.gz # If you only installed WasmEdge for the local user -cp target/release/libwasmedge_rustls.so ~/.wasmedge/plugin/ +cp libwasmedge_rustls.so ~/.wasmedge/plugin/ # If you installed Wasmedge at /usr/local for all users sudo mkdir -p /usr/local/lib/wasmedge/ -sudo cp target/release/libwasmedge_rustls.so /usr/local/lib/wasmedge/ +sudo cp libwasmedge_rustls.so /usr/local/lib/wasmedge/ ``` Then, go to [HTTPS request in Rust chapter](../develop/rust/http_service/client.md) to see how to run HTTPs services with Rust. diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/start/install.md b/i18n/zh/docusaurus-plugin-content-docs/current/start/install.md index f275d6f3..f51aed37 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/start/install.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/start/install.md @@ -128,15 +128,15 @@ WasmEdge uses plug-ins to extend its functionality. If you want to use more of W The WasmEdge TLS plug-in utilizes the native OpenSSL library to support HTTPS and TLS requests from WasmEdge sockets. To install the WasmEdge TLS plug-in on Linux, run the following commands after you have installed WasmEdge. ```bash -wget https://github.com/second-state/wasmedge_rustls_plugin/releases/download/0.2.0/wasmedge_rustls_plugin_ubuntu-20.04.zip -unzip wasmedge_rustls_plugin_ubuntu-20.04.zip +wget https://github.com/WasmEdge/WasmEdge/releases/download/0.13.4/WasmEdge-plugin-wasmedge_rustls-0.13.4-manylinux2014_x86_64.tar.gz +tar xf WasmEdge-plugin-wasmedge_rustls-0.13.4-manylinux2014_x86_64.tar.gz # If you only installed WasmEdge for the local user -cp target/release/libwasmedge_rustls.so ~/.wasmedge/plugin/ +cp libwasmedge_rustls.so ~/.wasmedge/plugin/ # If you installed Wasmedge at /usr/local for all users sudo mkdir -p /usr/local/lib/wasmedge/ -sudo cp target/release/libwasmedge_rustls.so /usr/local/lib/wasmedge/ +sudo cp libwasmedge_rustls.so /usr/local/lib/wasmedge/ ``` Then, go to [HTTPS request in Rust chapter](../develop/rust/http_service/client.md) to see how to run HTTPs services with Rust.