Helo/ Please help me about setting calibre-server.
I want the server to start in a Russian language. More precisely, the web form should be in Russian. How is this enough?
I used on CentOS 8/ To auto-start calibre-server create a service unit:/etc/systemd/system/calibre-server.service:
Quote:
[Unit]
Description=calibre content server
After=network.target
[Service]
Type=simple
User=calibre
Group=calibre
ExecStart=/opt/calibre/calibre-server \
--access-log=/var/log/calibre-server-access.log \
--enable-auth \
--log=/var/log/calibre-server.log \
--port=8008 \
--url-prefix=/calibre \
--userdb=/var/lib/nethserver/calibre/users.sqlite \
"/var/lib/nethserver/calibre/library"
[Install]
WantedBy=multi-user.target
|