# HG changeset patch # User Nicolas Chauvat # Date 1268159990 -3600 # Node ID 1693d6174251dad5a6608d0a4471d470937f7c97 # Parent a2fb82770fa6cb69065cbe90d08601be76281f75 [documentation] fix errors in book chapter instance-config diff -r a2fb82770fa6 -r 1693d6174251 doc/book/en/admin/instance-config.rst --- a/doc/book/en/admin/instance-config.rst Tue Mar 09 11:27:41 2010 +0100 +++ b/doc/book/en/admin/instance-config.rst Tue Mar 09 19:39:50 2010 +0100 @@ -49,13 +49,13 @@ and `https://localhost/demo` and actually running on port 8080, it takes to the http::: - RewriteCond %(REQUEST_URI) ^/demo + RewriteCond %{REQUEST_URI} ^/demo RewriteRule ^/demo$ /demo/ RewriteRule ^/demo/(.*) http://127.0.0.1:8080/$1 [L,P] and for the https::: - RewriteCond %(REQUEST_URI) ^/ demo + RewriteCond %{REQUEST_URI} ^/ demo RewriteRule ^/demo$/demo/ RewriteRule ^/demo/(.*) http://127.0.0.1:8080/https/$1 [L,P] @@ -63,7 +63,7 @@ and we will file in the all-in-one.conf of the instance::: base-url = http://localhost/demo - https-url = `https://localhost/demo` + https-url = https://localhost/demo Setting up the web client -------------------------