From 763ce0cba4359d8f82a3bf87e2f25f8c562ceb7a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 26 Oct 2014 08:26:47 +0530 Subject: [PATCH] Fix #1385769 [Little typo?](https://bugs.launchpad.net/calibre/+bug/1385769) --- manual/server.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/server.rst b/manual/server.rst index 0aa4059f72..58c5d09a1b 100644 --- a/manual/server.rst +++ b/manual/server.rst @@ -27,7 +27,7 @@ Now suppose you are using Apache as your main server. First enable the proxy mod LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_http_module modules/mod_proxy_http.so -The exact technique for enabling the proxy modules will vary depending on your Apache installation. Once you have the proxy modules enabled, add the following rules to httpd.conf (or if you are using virtual hosts to the conf file for the virtual host in question:: +The exact technique for enabling the proxy modules will vary depending on your Apache installation. Once you have the proxy modules enabled, add the following rules to httpd.conf (or if you are using virtual hosts to the conf file for the virtual host in question):: RewriteEngine on RewriteRule ^/calibre/(.*) http://localhost:8080/calibre/$1 [proxy]