Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion versioned_docs/version-1.5.0/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.0-2-g33faee4f56 main
1.5.0-4-gd79d041ac9 main
12 changes: 12 additions & 0 deletions versioned_docs/version-1.5.0/install/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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://<username>:<password>@<ip>:<port>"

# 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.
Expand Down
12 changes: 12 additions & 0 deletions versioned_docs/version-1.5.0/start/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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://<username>:<password>@<ip>:<port>"

# 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
Expand Down