This selinux policy module can be used in two modes:
Setup directories:
mkdir -p /opt/home/calibre/{.cache,.config,tmp,Calibre Library}/ /opt/calibre/
To use calibre-only temp files:
mkdir -p /opt/home/calibre/tmp
Alternatively you can put these in /opt/calibre/tmp/ .
Create environment file to include in Initscript / SystemD unit file, that points to the temp directory Calibre should use:
cat<<EOF >/etc/sysconfig/calibre-server
TEMP="/opt/home/calibre/tmp"
EOF
Nothing to do.
Example SystemD unit file:
cat<<EOF > /etc/systemd/system/calibre-server.service
[Unit]
Description=Calibre server headless edition
#After=remote-fs.target
After=network-online.target time-sync.target
Wants=network-online.target
[Service]
Type=simple
User=calibre
#Restart=yes
TimeoutSec=5min
IgnoreSIGPIPE=no
KillMode=process
GuessMainPID=no
RemainAfterExit=yes
#SuccessExitStatus=5 6
EnvironmentFile=/etc/sysconfig/calibre-server
WorkingDirectory=/opt/home/calibre/Calibre Library/
ExecStart=/opt/calibre/calibre-server --port=9080 --log=/var/log/calibre-server.log "/opt/home/calibre/Calibre Library/"
WantedBy=multi-user.target
EOF
Remember to adapt the WorkingDirectory and ExecStart parameter, if your Calibre Library is not in /opt/home/calibre/Calibre Library/.
.. and activate the new SystemD unit file by reloading the daemon:
systemctl daemon-reload
restorecon -vR /opt/ /home/
service calibre-server restart
You can now be done with this.
For Apache your (presumably)
cat<<EOF >> yourconf.conf
AllowEncodedSlashes On
ProxyPass "/" "http://127.0.0.1:9080/"
ProxyPassReverse "/" "http://127.0.0.1:9080/"
EOF
cat<<EOF >> yourconf.conf
Allow from all
AuthType Basic
AuthName "Calibre-auth"
AuthUserFile /etc/httpd/.htpasswd.users
Require user calibre
EOF
Remember to create a user in /etc/httpd/.htpasswd.users by using the htpasswd command:
htpasswd /etc/httpd/.htpasswd.users calibre
Congrats, you now should have a better secured calibre-server instance running with SElinux and HTTP Basic authentication behind a reverse proxy!
Do not put anything of value in /opt/calibre/ !
The default update script under https://download.calibre-ebook.com/linux-installer.sh will happily delete /opt/calibre/ completely and start from scratch, even if it means killing the installer itself.
It is a mean script of the type "let's hope noone ever roots my webserver and adds stuff to the installer script.. or edits calibre files manually".
Creating an rpm, deb, etc. would have been much better.. or if everything else fails, at least they could have used npm.
Thus for now, be very wary of using thge original calibre-update script on any machine, you still want to use lateron.
The following script MIGHT do things a little more safely.
This file should be at /opt/calibre/calibre-update.sh after installing the SElinux module.
This file should be at /opt/calibre/calibre_safer_installer.patch after installing the SElinux module.