Skip to content

Commit

Permalink
docs: [#463] system package dep: libssl-dev
Browse files Browse the repository at this point in the history
Since we are using native TLS support you need to install `libssl-dev`
on Linux:

```
sudo apt-get install libssl-dev
```
  • Loading branch information
josecelano committed Feb 8, 2024
1 parent e80b18f commit b799306
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions project-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ rowid
RUSTDOCFLAGS
RUSTFLAGS
rustfmt
rustls
rustversion
serde
sgxj
Expand Down
12 changes: 11 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
//! ## Prerequisites
//!
//! In order the run the index you will need a running torrust tracker. In the
//! configuration you need to fill the `index` section with the following:
//! configuration you need to fill the `tracker` section with the following:
//!
//! ```toml
//! [tracker]
Expand All @@ -69,6 +69,16 @@
//! You can follow the tracker installation instructions [here](https://docs.rs/torrust-tracker)
//! or you can use the docker to run both the tracker and the index. Refer to the
//! [Run with docker](#run-with-docker) section for more information.
//!
//! You will also need to install this dependency:
//!
//! ```text
//! sudo apt-get install libssl-dev
//! ```
//!
//! We needed because we are using native TLS support instead of [rustls](https://github.com/rustls/rustls).
//!
//! More info: <https://github.com/torrust/torrust-index/issues/463>.
//!
//! If you are using `SQLite3` as database driver, you will need to install the
//! following dependency:
Expand Down

0 comments on commit b799306

Please sign in to comment.