View Single Post
Old 01-31-2012, 10:29 PM   #4
Fmstrat
G:RSS-Web Creator
Fmstrat began at the beginning.
 
Posts: 94
Karma: 14
Join Date: Aug 2010
Device: Kindle 3, PW, Nexus 4,10
Quote:
Originally Posted by ilovejedd View Post
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
Fmstrat is offline   Reply With Quote