doc/book/en/admin/instance-config.rst
branchstable
changeset 4852 1693d6174251
parent 4749 1560d51385f0
child 5306 763319a51e72
--- 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
 -------------------------