This file is indexed.

/usr/share/doc/orthanc/README.Debian is in orthanc 1.2.0+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Tutorial
========

Once Orthanc is installed, you can test your installation with:

$ xdg-open http://localhost:8042/app/explorer.html

Then click on the "Upload" button, drag/drop a DICOM file, click on
the "Start the upload" button, and you should be going. See for more
info:

https://code.google.com/p/orthanc/wiki/OrthancCookbook#Opening_Orthanc_Explorer



Optimizing boot time
====================

If the postgresql package is installed on the local host, the Orthanc
service will start after PostgreSQL service. This is because Orthanc
can be configured to use PostgreSQL as its database back-end instead
of the default SQLite back-end (cf. the "orthanc-postgresql" package).

This dependency of Orthanc against PostgreSQL can slightly impair the
boot time if Orthanc is configured to use SQLite or an external
PostgreSQL server.

If you wish to optimize your boot time, you can safely remove
"postgresql" from the following part of "/etc/init.d/orthanc":

>>>>>
# Should-Start:      postgresql
# Should-Stop:       postgresql
<<<<<

provided that the 2 following conditions are both met:

(1) Orthanc uses SQLite OR an external PostgreSQL server, AND
(2) the local "postgresql" package is installed.