comparison Sphinx/source/faq/https.rst @ 909:5622e4ac108b

note about missing libssl-dev
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 20 Jan 2023 08:14:04 +0100
parents 22e3868d2eb1
children 0b89127439b1
comparison
equal deleted inserted replaced
908:34e9e5e3b609 909:5622e4ac108b
32 in the `PEM format 32 in the `PEM format
33 <https://en.wikipedia.org/wiki/X.509#Certificate_filename_extensions>`_. 33 <https://en.wikipedia.org/wiki/X.509#Certificate_filename_extensions>`_.
34 2. Prepend this certificate with the content of your private key. 34 2. Prepend this certificate with the content of your private key.
35 3. Modify the ``SslEnabled`` and ``SslCertificate`` variables in the 35 3. Modify the ``SslEnabled`` and ``SslCertificate`` variables in the
36 :ref:`Orthanc configuration file <configuration>`. 36 :ref:`Orthanc configuration file <configuration>`.
37
38 **Warning:** If you have installed Orthanc using the official package
39 of a GNU/Linux distribution of the Debian family (such as Ubuntu),
40 make sure that the ``libssl-dev`` package is installed. Otherwise,
41 Orthanc will fail to start with the error message ``The TCP port of
42 the HTTP server is privileged or already in use``. This is because
43 Civetweb (the embedded HTTP server of Orthanc) cannot find the
44 ``/usr/lib/x86_64-linux-gnu/libcrypto.so`` shared library (`reference
45 <https://groups.google.com/g/orthanc-users/c/5N1K9iniBoA/m/EXiYrKt3BQAJ>`__).
37 46
38 47
39 Examples 48 Examples
40 -------- 49 --------
41 50