# HG changeset patch # User Sylvain Thénault # Date 1268161184 -3600 # Node ID a9caa76ba2c822c1994e30a96c6820d2ab533f96 # Parent c8f887a5b2fa29953c94403b1aadce6e79423fc2# Parent 1693d6174251dad5a6608d0a4471d470937f7c97 merge diff -r c8f887a5b2fa -r a9caa76ba2c8 doc/book/en/admin/instance-config.rst --- a/doc/book/en/admin/instance-config.rst Tue Mar 09 19:58:30 2010 +0100 +++ b/doc/book/en/admin/instance-config.rst Tue Mar 09 19:59:44 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 -------------------------