Quote:
Originally Posted by Fmstrat
I'm going to guess there's no chance of getting a setting added into the interface to specify a directory to run calibre in? Such as setting it to "foldername" would make calibre host in "http://localhost:7070/foldername".
|
Already exists. No idea how to get to it via GUI but if you launch calibre-server from command-line you can do this:
(assuming
https://site.com/calibre)
Code:
calibre-server --url-prefix /calibre
You can also set other options (e.g. username, password, port number, etc) via command line.
On my Apache install, I didn't need to bother with mod_rewrite. I just added the following to my httpd.conf:
Code:
<Location "/calibre" >
ProxyPass http://localhost:8080/calibre
ProxyPassReverse http://localhost:8080/calibre
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</Location>