Quote:
Originally Posted by ilovejedd
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>
|
Good to know! I ended up setting up a separate site on a different port, that way I could use the root domain with SSL.
Thanks,
Ben