diff --git a/versioned_docs/version-1.5.0/.version b/versioned_docs/version-1.5.0/.version index 4f9bbab..f3015d7 100644 --- a/versioned_docs/version-1.5.0/.version +++ b/versioned_docs/version-1.5.0/.version @@ -1 +1 @@ -1.5.0-2-g33faee4f56 main \ No newline at end of file +1.5.0-4-gd79d041ac9 main \ No newline at end of file diff --git a/versioned_docs/version-1.5.0/install/index.md b/versioned_docs/version-1.5.0/install/index.md index 4fb46e1..a6fb20f 100644 --- a/versioned_docs/version-1.5.0/install/index.md +++ b/versioned_docs/version-1.5.0/install/index.md @@ -24,6 +24,18 @@ curl -fsSL https://thin-edge.io/install.sh | sh -s wget -O - https://thin-edge.io/install.sh | sh -s ``` +If the device is in a network behind a HTTP Proxy, then you will need to set the `https_proxy` environment variable before installing %%te%%. + +```sh +export https_proxy="http://:@:" + +# Without authentication +export https_proxy="http://127.0.0.1:8080" + +# With authentication +export https_proxy="http://user:password@127.0.0.1:8080" +``` + ### Update using a package manager %%te%% and its components can be updated by running the install.sh script again, or using the Linux package manager on your distribution. diff --git a/versioned_docs/version-1.5.0/start/getting-started.md b/versioned_docs/version-1.5.0/start/getting-started.md index feb4af1..3f4a73d 100644 --- a/versioned_docs/version-1.5.0/start/getting-started.md +++ b/versioned_docs/version-1.5.0/start/getting-started.md @@ -66,6 +66,18 @@ curl -fsSL https://thin-edge.io/install.sh | sh -s wget -O - https://thin-edge.io/install.sh | sh -s ``` +If the device is in a network behind a HTTP Proxy, then you will need to set the `https_proxy` environment variable before installing %%te%%. + +```sh +export https_proxy="http://:@:" + +# Without authentication +export https_proxy="http://127.0.0.1:8080" + +# With authentication +export https_proxy="http://user:password@127.0.0.1:8080" +``` + After a successful installation, it is possible to use %%te%% via the CLI and use the tedge commands. :::info