diff docs/setup.rst @ 6789:4d04ac08fff7

docs: fix some sphinx warnings RST code blocks must have valid syntax, and <someprefix> could thus not be used as placeholder.
author Mads Kiilerich <mads@kiilerich.com>
date Sat, 12 Aug 2017 16:36:28 +0200
parents 793ea7823938
children a8b9f2d68e7d
line wrap: on
line diff
--- a/docs/setup.rst	Fri Aug 11 02:48:15 2017 +0200
+++ b/docs/setup.rst	Sat Aug 12 16:36:28 2017 +0200
@@ -763,9 +763,9 @@
 
 .. code-block:: apache
 
-    <Location /<someprefix> >
-      ProxyPass http://127.0.0.1:5000/<someprefix>
-      ProxyPassReverse http://127.0.0.1:5000/<someprefix>
+    <Location /PREFIX >
+      ProxyPass http://127.0.0.1:5000/PREFIX
+      ProxyPassReverse http://127.0.0.1:5000/PREFIX
       SetEnvIf X-Url-Scheme https HTTPS=1
     </Location>
 
@@ -778,9 +778,9 @@
 
     [filter:proxy-prefix]
     use = egg:PasteDeploy#prefix
-    prefix = /<someprefix>
+    prefix = /PREFIX
 
-then change ``<someprefix>`` into your chosen prefix
+then change ``PREFIX`` into your chosen prefix
 
 
 Apache with mod_wsgi