Skip to content

Commit 5f7608e

Browse files
committed
docs: [#463] system package dep: libssl-dev
Since we are using native TLS support you need to install `libssl-dev` on Linux: ``` sudo apt-get install libssl-dev ```
1 parent e80b18f commit 5f7608e

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

project-words.txt

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ rowid
6868
RUSTDOCFLAGS
6969
RUSTFLAGS
7070
rustfmt
71+
rustls
7172
rustversion
7273
serde
7374
sgxj

src/lib.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
//! ## Prerequisites
5454
//!
5555
//! In order the run the index you will need a running torrust tracker. In the
56-
//! configuration you need to fill the `index` section with the following:
56+
//! configuration you need to fill the `tracker` section with the following:
5757
//!
5858
//! ```toml
5959
//! [tracker]
@@ -70,6 +70,16 @@
7070
//! or you can use the docker to run both the tracker and the index. Refer to the
7171
//! [Run with docker](#run-with-docker) section for more information.
7272
//!
73+
//! You will also need to install this dependency:
74+
//!
75+
//! ```text
76+
//! sudo apt-get install libssl-dev
77+
//! ```
78+
//!
79+
//! We needed because we are using native TLS support instead of [rustls](https://github.com/rustls/rustls).
80+
//!
81+
//! More info: <https://github.com/torrust/torrust-index/issues/463>.
82+
//!
7383
//! If you are using `SQLite3` as database driver, you will need to install the
7484
//! following dependency:
7585
//!

0 commit comments

Comments
 (0)