calibre/manual/server.rst
2017-05-30 12:34:31 +05:30

216 lines
9.4 KiB
ReStructuredText

The calibre Content server
==============================
The calibre :guilabel:`Content server` allows you to access your calibre
libraries and read books directly in a browser on your favorite mobile phone or
tablet device. As a result, you do not need to install any dedicated book
reading/management apps on your phone. Just use the browser. The server
downloads and stores the book you are reading in an offline cache so that you
can read it even when there is no internet connection.
.. contents:: Contents
:depth: 2
:local:
To start the server, click the :guilabel:`Connect/share` button and choose
:guilabel:`Start Content server`. You might get a message from your computer's
firewall or anti-virus program asking if it is OK to allow access to
``calibre.exe``. Click the ``Allow`` or ``OK`` button. Then open a browser
(preferably Chrome or Firefox) in your computer and type in the following
address:
http://127.0.0.1:8080
This will open a page in the browser showing you your calibre libraries, click
on any one and browse the books in it. Click on a book, and it will show you
all the metadata about the book, along with buttons to :guilabel:`Read book`
and :guilabel:`Download book`. Click the :guilabel:`Read book` button to
start reading the book.
.. note:: The address used above ``http://127.0.0.1:8080`` will only work on
the computer that is running calibre. To access the server from other
computers/phones/tablets/etc. you will need to do a little more work,
as described in the next section.
Accessing the Content server from other devices
---------------------------------------------------
There are two types of remote device access that you will typically need. The
first, simpler kind is from within your home network. If you are running
calibre on a computer on your home network and you have also connected your
other devices to the same home network, then you should be easily able to
access the server on those devices.
Accessing the server from devices on your home network
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
After starting the server in calibre as described above, click the
:guilabel:`Connect/share` button again. Instead of the :guilabel:`Start Content
server` action, you should see a :guilabel:`Stop Content server` action
instead. To the right of this action will be listed an IP addresses
and port numbers. These look like a bunch of numbers separated by periods. For
example::
Stop Content server [192.168.1.5, port 8080]
These numbers tell you what address to use to connect to the server in your
devices. Following the example above, the address becomes::
http://192.168.1.5:8080
The first part of the address is always ``http://`` the next part is the IP
address, which is the numbers before the comma and finally we have the port
number which must be added to the IP address with a colon (``:``). If you are
lucky, that should be all you need and you will be looking at the
calibre libraries on your device. If not, read on.
Trouble-shooting the home network connection
__________________________________________________
If you are unable to access the server from your device, try the following
steps:
#. Check that the server is running by opening the address
``http://127.0.0.1:8080`` in a browser running on the same computer as
the server.
#. Check that your firewall/antivirus is allowing connections to your
computer on the port ``8080`` and to the calibre program. The
easiest way to eliminate the firewall/anti-virus as the source of
problems is to temporarily turn them both off and then try connecting. You
should first disconnect from the internet, before turning off the
firewall, to keep your computer safe.
#. Check that your device and computer are on the same network. This means
they should both be connected to the same wireless router. In particular
neither should be using a cellular or wifi broadband connection.
#. If you have non-standard networking setup, it might be that the IP
address shown on the :guilabel:`Connect/share` menu is incorrect.
In such a case you will have to figure out what the correct IP address
to use is, yourself. Unfortunately, given the infinite diversity of
network configurations possible, it is not possible to give you a
roadmap for doing so.
#. If you are stuck, you can always ask for help in the `calibre user forums`_.
Accessing the server from anywhere on the internet
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. warning::
Before doing this you should turn on username/password protection in the
server, otherwise anyone in the world will be able to access your books.
Go to :guilabel:`Preferences->Sharing->Sharing over the net` and enable the
option to :guilabel:`Require username and password to access the content
server`.
While the particular details on setting up internet access vary depending on
the network configuration and type of computer you are using, the basic schema
is as follows.
#. Find out the external IP address of the computer you are going to run the
server on. You can do that by visiting the site `What is my IP address
<https://www.whatismyip.com/>`_ in a browser running on the computer.
#. If the computer is behind a router, enable port forwarding on the router
to forward the port ``8080`` (or whatever port you choose to run the
calibre Content server on) to the computer.
#. Make sure the calibre server is allowed through any firewalls/anti-virus
programs on your computer.
#. Now you should be able to access the server on any internet-connected
device using the IP address you found in the first step. For example,
if the IP address you found was ``123.123.123.123`` and the port you are
using for the calibre server is ``8080``, the address to use on your
device becomes: ``http://123.123.123.123:8080``.
#. Optionally, use a service like `no-ip <https://www.noip.com/free>`_ to
setup an easy to remember address to use instead of the IP address you
found in the first step.
.. note::
For maximum security, you should also enable HTTPS on the content server.
You can either do so directly in the server by providing the path to
the HTTPS certificate to use in the advanced configuration options for
the server, or you can setup a reverse proxy as described below, to use
an existing https setup.
Integrating the calibre Content server into other servers
------------------------------------------------------------
Here, we will show you how to integrate the calibre Content server into another
server. The most common reason for this is to make use of SSL. The basic
technique is to run the calibre server and setup a reverse proxy to it from the
main server.
A reverse proxy is when your normal server accepts incoming requests and passes
them onto the calibre server. It then reads the response from the calibre
server and forwards it to the client. This means that you can simply run the
calibre server as normal without trying to integrate it closely with your main
server, and you can take advantage of whatever authentication systems your main
server has in place.
Using a full virtual host
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The simplest configuration is to dedicate a full virtual host to the calibre
server. In this case, run the calibre server as::
calibre-server
Now setup the virtual host in your main server, for example, for nginx::
server {
listen [::]:80;
server_name myserver.example.com;
location / {
proxy_pass http://localhost:8080;
}
}
Or, for Apache::
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
<VirtualHost *:80>
ServerName myserver.example.com
ProxyPreserveHost On
ProxyPass "/" "http://localhost:8080"
</VirtualHost>
Using a URL prefix
^^^^^^^^^^^^^^^^^^^^^^^
If you do not want to dedicate a full virtual host to calibre, you can have it
use a URL prefix. Start the calibre server as::
calibre-server --url-prefix /calibre --port 8080
The key parameter here is ``--url-prefix /calibre``. This causes the Content server to serve all URLs prefixed by calibre. To see this in action, visit ``http://localhost:8080/calibre`` in your browser. You should see the normal Content server website, but now it will run under /calibre.
Now suppose you are using Apache as your main server. First enable the proxy modules in Apache, by adding the following to :file:`httpd.conf`::
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
The exact technique for enabling the proxy modules will vary depending on your Apache installation. Once you have the proxy modules enabled, add the following rules to httpd.conf (or if you are using virtual hosts to the conf file for the virtual host in question)::
RewriteEngine on
RewriteRule ^/calibre/(.*) http://localhost:8080/calibre/$1 [proxy]
RewriteRule ^/calibre http://localhost:8080 [proxy]
That's all, you will now be able to access the calibre Content server under the /calibre URL in your Apache server. The above rules pass all requests under /calibre to the calibre server running on port 8080 and thanks to the --url-prefix option above, the calibre server handles them transparently.
.. _calibre user forums: https://www.mobileread.com/forums/forumdisplay.php?f=166